diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-08-22 05:04:16 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-08-22 05:04:16 +0000 |
commit | b78ea37a6f8d289b9adb2b5bc565716168a00060 (patch) | |
tree | a19fd9489e7c7170882c52edae5f532141bec2e8 /src/functioncommandtolist.h | |
parent | e95c31f841b67fc69d93ec650fe285d34f996a1e (diff) | |
download | build-b78ea37a6f8d289b9adb2b5bc565716168a00060.tar.gz build-b78ea37a6f8d289b9adb2b5bc565716168a00060.tar.bz2 build-b78ea37a6f8d289b9adb2b5bc565716168a00060.tar.xz build-b78ea37a6f8d289b9adb2b5bc565716168a00060.zip |
The basic outline for all of the initial functions and rules has been set. The
parser and scanner are using the new system so they actually match functions
and whatnot and pass that data to the parser, it's very cool.
Diffstat (limited to 'src/functioncommandtolist.h')
-rw-r--r-- | src/functioncommandtolist.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/functioncommandtolist.h b/src/functioncommandtolist.h new file mode 100644 index 0000000..90b4bf3 --- /dev/null +++ b/src/functioncommandtolist.h | |||
@@ -0,0 +1,18 @@ | |||
1 | #ifndef FUNCTION_COMMAND_TO_LIST_H | ||
2 | #define FUNCTION__H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | #include "function.h" | ||
7 | |||
8 | class FunctionCommandToList : public Function | ||
9 | { | ||
10 | public: | ||
11 | FunctionCommandToList(); | ||
12 | virtual ~FunctionCommandToList(); | ||
13 | |||
14 | private: | ||
15 | |||
16 | }; | ||
17 | |||
18 | #endif | ||