summaryrefslogtreecommitdiff
path: root/src/unitnumber.h
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2013-04-23 09:47:29 -0600
committerMike Buland <mike@xagasoft.com>2013-04-23 09:47:29 -0600
commitc234914394b4c8cdee66d7528bad3c132f90dc4d (patch)
treee2204b30d1edd0d7f45a5f8579738e8fa274c644 /src/unitnumber.h
parent95da25821bcbcd6a94a7fdf64da1618f5324b779 (diff)
downloadclic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.gz
clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.bz2
clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.xz
clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.zip
Added cli params & a unit test.
Diffstat (limited to 'src/unitnumber.h')
-rw-r--r--src/unitnumber.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/unitnumber.h b/src/unitnumber.h
new file mode 100644
index 0000000..89b1c0f
--- /dev/null
+++ b/src/unitnumber.h
@@ -0,0 +1,15 @@
1#ifndef UNIT_NUMBER_H
2#define UNIT_NUMBER_H
3
4#include <bu/unitsuite.h>
5
6class UnitNumber : public Bu::UnitSuite
7{
8public:
9 UnitNumber();
10 virtual ~UnitNumber();
11
12 void multiply1();
13};
14
15#endif