aboutsummaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-07-31 17:23:04 +0000
committerMike Buland <eichlan@xagasoft.com>2006-07-31 17:23:04 +0000
commitb672fa69c4c98509f8ee251b87300e3fcbe6bdc8 (patch)
tree064212cec710fc5bfd5f2b75dd2a502ba9f66eba /src/command.h
parent9139f1df4cda80b91ab68e5de27e85eaa4c54682 (diff)
downloadbuild-b672fa69c4c98509f8ee251b87300e3fcbe6bdc8.tar.gz
build-b672fa69c4c98509f8ee251b87300e3fcbe6bdc8.tar.bz2
build-b672fa69c4c98509f8ee251b87300e3fcbe6bdc8.tar.xz
build-b672fa69c4c98509f8ee251b87300e3fcbe6bdc8.zip
We're almost to rule/command generation, then only a couple of steps before it
will do it all!
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h
index aa00eae..495c749 100644
--- a/src/command.h
+++ b/src/command.h
@@ -4,6 +4,8 @@
4#include <stdint.h> 4#include <stdint.h>
5#include "staticstring.h" 5#include "staticstring.h"
6 6
7class Builder;
8
7class Command 9class Command
8{ 10{
9public: 11public:
@@ -29,6 +31,8 @@ public:
29 31
30 void debug(); 32 void debug();
31 33
34 void execute( class Builder &bld );
35
32private: 36private:
33 CmdType nType; 37 CmdType nType;
34 StaticString sTarget; 38 StaticString sTarget;