diff options
Diffstat (limited to '')
-rw-r--r-- | src/float.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/float.h b/src/float.h index e69de29..cf20010 100644 --- a/src/float.h +++ b/src/float.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #ifndef GATS_FLOAT_H | ||
2 | #define GATS_FLOAT_H | ||
3 | |||
4 | namespace Gats | ||
5 | { | ||
6 | class Float | ||
7 | { | ||
8 | public: | ||
9 | Float(); | ||
10 | Float( double f ); | ||
11 | virtual ~Float(); | ||
12 | |||
13 | private: | ||
14 | }; | ||
15 | } | ||
16 | |||
17 | #endif | ||