diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 10:27:38 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 10:27:38 -0700 |
commit | bae6192c54533e8da95d8ae1ed4d4eccee28c39a (patch) | |
tree | f27b03b518894420992ad1a3ed3ee1a07935ca4b /src/commandset.h | |
parent | 550d4f13ace49e3d442e43d46cd066f174709400 (diff) | |
download | stage-bae6192c54533e8da95d8ae1ed4d4eccee28c39a.tar.gz stage-bae6192c54533e8da95d8ae1ed4d4eccee28c39a.tar.bz2 stage-bae6192c54533e8da95d8ae1ed4d4eccee28c39a.tar.xz stage-bae6192c54533e8da95d8ae1ed4d4eccee28c39a.zip |
Getting close to realy running.
Diffstat (limited to 'src/commandset.h')
-rw-r--r-- | src/commandset.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/commandset.h b/src/commandset.h new file mode 100644 index 0000000..593d529 --- /dev/null +++ b/src/commandset.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef COMMAND_SET_H | ||
2 | #define COMMAND_SET_H | ||
3 | |||
4 | #include <bu/list.h> | ||
5 | #include <bu/string.h> | ||
6 | |||
7 | class CommandSet | ||
8 | { | ||
9 | public: | ||
10 | CommandSet(); | ||
11 | virtual ~CommandSet(); | ||
12 | |||
13 | void addCommand( class Command *pCmd ); | ||
14 | |||
15 | private: | ||
16 | typedef Bu::List<class Command *> CommandList; | ||
17 | CommandList lCommand; | ||
18 | }; | ||
19 | |||
20 | #endif | ||