diff options
Diffstat (limited to '')
-rw-r--r-- | src/perform.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/perform.h b/src/perform.h deleted file mode 100644 index 914f3b0..0000000 --- a/src/perform.h +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | #ifndef PERFORM_H | ||
2 | #define PERFORM_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | #include "staticstring.h" | ||
6 | |||
7 | class Perform | ||
8 | { | ||
9 | public: | ||
10 | Perform( const char *sTarget ); | ||
11 | virtual ~Perform(); | ||
12 | |||
13 | virtual void execute( class Builder &bld ) = 0; | ||
14 | |||
15 | const char *getTarget() | ||
16 | { | ||
17 | return sTarget; | ||
18 | } | ||
19 | |||
20 | private: | ||
21 | StaticString sTarget; | ||
22 | |||
23 | }; | ||
24 | |||
25 | #endif | ||