diff options
-rw-r--r-- | src/perform.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/perform.h b/src/perform.h index 5a961e2..add5a09 100644 --- a/src/perform.h +++ b/src/perform.h | |||
@@ -16,10 +16,18 @@ public: | |||
16 | void addParam( const char *sParam ); | 16 | void addParam( const char *sParam ); |
17 | virtual Perform *duplicate( Build &bld, const std::string &cont ) = 0; | 17 | virtual Perform *duplicate( Build &bld, const std::string &cont ) = 0; |
18 | void copyData( Perform *pSrc, Build &bld, const std::string &cont ); | 18 | void copyData( Perform *pSrc, Build &bld, const std::string &cont ); |
19 | std::string getTarget() | ||
20 | { | ||
21 | return sTarget; | ||
22 | } | ||
23 | void setTarget( std::string sTarget ) | ||
24 | { | ||
25 | this->sTarget = sTarget; | ||
26 | } | ||
19 | 27 | ||
20 | private: | 28 | private: |
21 | std::list<std::string> lParam; | 29 | std::list<std::string> lParam; |
22 | 30 | std::string sTarget; | |
23 | }; | 31 | }; |
24 | 32 | ||
25 | #endif | 33 | #endif |