diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2010-08-18 16:17:15 +0000 | 
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2010-08-18 16:17:15 +0000 | 
| commit | 9dc8cc535ef5fc4ea78f967fe285fe4424ff4458 (patch) | |
| tree | a8a267bf5b8f8ca74bc767964fe47a97b33be01a /src/float.h | |
| parent | cebb8eca644ff772b169178810372971176ebe9d (diff) | |
| download | libgats-9dc8cc535ef5fc4ea78f967fe285fe4424ff4458.tar.gz libgats-9dc8cc535ef5fc4ea78f967fe285fe4424ff4458.tar.bz2 libgats-9dc8cc535ef5fc4ea78f967fe285fe4424ff4458.tar.xz libgats-9dc8cc535ef5fc4ea78f967fe285fe4424ff4458.zip | |
getting it all tuned up.
Diffstat (limited to 'src/float.h')
| -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 | ||
