diff options
Diffstat (limited to 'src/perform.h')
-rw-r--r-- | src/perform.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/perform.h b/src/perform.h index 0b6a16d..020af42 100644 --- a/src/perform.h +++ b/src/perform.h | |||
@@ -2,7 +2,8 @@ | |||
2 | #define PERFORM_H | 2 | #define PERFORM_H |
3 | 3 | ||
4 | #include <stdint.h> | 4 | #include <stdint.h> |
5 | 5 | #include <list> | |
6 | #include <string> | ||
6 | 7 | ||
7 | class Perform | 8 | class Perform |
8 | { | 9 | { |
@@ -10,7 +11,10 @@ public: | |||
10 | Perform(); | 11 | Perform(); |
11 | virtual ~Perform(); | 12 | virtual ~Perform(); |
12 | 13 | ||
14 | void addParam( const char *sParam ); | ||
15 | |||
13 | private: | 16 | private: |
17 | std::list<std::string> lParam; | ||
14 | 18 | ||
15 | }; | 19 | }; |
16 | 20 | ||