summaryrefslogtreecommitdiff
path: root/src/commandset.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-29 10:27:38 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-29 10:27:38 -0700
commitbae6192c54533e8da95d8ae1ed4d4eccee28c39a (patch)
treef27b03b518894420992ad1a3ed3ee1a07935ca4b /src/commandset.h
parent550d4f13ace49e3d442e43d46cd066f174709400 (diff)
downloadstage-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.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