diff options
Diffstat (limited to 'src/unitparser.h')
-rw-r--r-- | src/unitparser.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/unitparser.h b/src/unitparser.h new file mode 100644 index 0000000..4f9bc33 --- /dev/null +++ b/src/unitparser.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef UNIT_PARSER_H | ||
2 | #define UNIT_PARSER_H | ||
3 | |||
4 | #include <bu/unitsuite.h> | ||
5 | |||
6 | class UnitParser : public Bu::UnitSuite | ||
7 | { | ||
8 | public: | ||
9 | UnitParser(); | ||
10 | virtual ~UnitParser(); | ||
11 | |||
12 | void order1(); | ||
13 | }; | ||
14 | |||
15 | #endif | ||