#ifndef GATS_FLOAT_H #define GATS_FLOAT_H namespace Gats { class Float { public: Float(); Float( double f ); virtual ~Float(); private: }; } #endif