diff options
author | Mike Buland <mike@xagasoft.com> | 2013-04-23 09:47:29 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2013-04-23 09:47:29 -0600 |
commit | c234914394b4c8cdee66d7528bad3c132f90dc4d (patch) | |
tree | e2204b30d1edd0d7f45a5f8579738e8fa274c644 /src/unitnumber.h | |
parent | 95da25821bcbcd6a94a7fdf64da1618f5324b779 (diff) | |
download | clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.gz clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.bz2 clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.tar.xz clic-c234914394b4c8cdee66d7528bad3c132f90dc4d.zip |
Added cli params & a unit test.
Diffstat (limited to '')
-rw-r--r-- | src/unitnumber.h | 15 |
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 | |||
6 | class UnitNumber : public Bu::UnitSuite | ||
7 | { | ||
8 | public: | ||
9 | UnitNumber(); | ||
10 | virtual ~UnitNumber(); | ||
11 | |||
12 | void multiply1(); | ||
13 | }; | ||
14 | |||
15 | #endif | ||