summaryrefslogtreecommitdiff
path: root/src/unitnumber.h
diff options
context:
space:
mode:
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