aboutsummaryrefslogtreecommitdiff
path: root/src/float.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-08-18 16:17:15 +0000
committerMike Buland <eichlan@xagasoft.com>2010-08-18 16:17:15 +0000
commit9dc8cc535ef5fc4ea78f967fe285fe4424ff4458 (patch)
treea8a267bf5b8f8ca74bc767964fe47a97b33be01a /src/float.h
parentcebb8eca644ff772b169178810372971176ebe9d (diff)
downloadlibgats-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.h17
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
4namespace 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