diff options
Diffstat (limited to 'src/perform.h')
| -rw-r--r-- | src/perform.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/perform.h b/src/perform.h index fefb05e..2eb8cb0 100644 --- a/src/perform.h +++ b/src/perform.h | |||
| @@ -6,12 +6,18 @@ | |||
| 6 | class Perform | 6 | class Perform |
| 7 | { | 7 | { |
| 8 | public: | 8 | public: |
| 9 | Perform(); | 9 | Perform( const char *sTarget ); |
| 10 | virtual ~Perform(); | 10 | virtual ~Perform(); |
| 11 | 11 | ||
| 12 | virtual void execute( class Builder &bld ) = 0; | 12 | virtual void execute( class Builder &bld ) = 0; |
| 13 | 13 | ||
| 14 | const char *getTarget() | ||
| 15 | { | ||
| 16 | return sTarget; | ||
| 17 | } | ||
| 18 | |||
| 14 | private: | 19 | private: |
| 20 | StaticString sTarget; | ||
| 15 | 21 | ||
| 16 | }; | 22 | }; |
| 17 | 23 | ||
