diff options
Diffstat (limited to 'src/action.h')
-rw-r--r-- | src/action.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/action.h b/src/action.h index ea92efa..a5555a3 100644 --- a/src/action.h +++ b/src/action.h | |||
@@ -15,6 +15,7 @@ public: | |||
15 | virtual ~Action(); | 15 | virtual ~Action(); |
16 | 16 | ||
17 | void add( Command *pCmd ); | 17 | void add( Command *pCmd ); |
18 | void add( int nType, const char *sCmd ); | ||
18 | 19 | ||
19 | const char *getName() | 20 | const char *getName() |
20 | { | 21 | { |
@@ -38,6 +39,7 @@ private: | |||
38 | bool bDefault; | 39 | bool bDefault; |
39 | StaticString sName; | 40 | StaticString sName; |
40 | std::list<Command *> lCommand; | 41 | std::list<Command *> lCommand; |
42 | std::list<std::pair<int, std::string> > lRegExCommand; | ||
41 | }; | 43 | }; |
42 | 44 | ||
43 | #endif | 45 | #endif |