summaryrefslogtreecommitdiff
path: root/src/commandset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commandset.h')
-rw-r--r--src/commandset.h20
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
7class CommandSet
8{
9public:
10 CommandSet();
11 virtual ~CommandSet();
12
13 void addCommand( class Command *pCmd );
14
15private:
16 typedef Bu::List<class Command *> CommandList;
17 CommandList lCommand;
18};
19
20#endif