aboutsummaryrefslogtreecommitdiff
path: root/src/perform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/perform.h')
-rw-r--r--src/perform.h6
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
7class Perform 8class 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
13private: 16private:
17 std::list<std::string> lParam;
14 18
15}; 19};
16 20