diff options
| author | Mike Buland <mike@xagasoft.com> | 2013-11-14 15:35:47 -0700 |
|---|---|---|
| committer | Mike Buland <mike@xagasoft.com> | 2013-11-14 15:35:47 -0700 |
| commit | abe7e449143052b07fae688da690c2a7d387a291 (patch) | |
| tree | 00742d14bce96777ce65589f9abeeca4cdadbc25 /src/unitparser.h | |
| parent | bc0484899acb3495f95d7400ff2eb804ae580096 (diff) | |
| download | clic-abe7e449143052b07fae688da690c2a7d387a291.tar.gz clic-abe7e449143052b07fae688da690c2a7d387a291.tar.bz2 clic-abe7e449143052b07fae688da690c2a7d387a291.tar.xz clic-abe7e449143052b07fae688da690c2a7d387a291.zip | |
Fixed (?) parsing order of operations bug, added unit tests.
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 | ||
