equal
deleted
inserted
replaced
32 |
32 |
33 #include <list> |
33 #include <list> |
34 using namespace std; |
34 using namespace std; |
35 |
35 |
36 #include "Command.h" |
36 #include "Command.h" |
|
37 #include "SoeCommand.h" |
37 |
38 |
38 /****************************************************************************/ |
39 /****************************************************************************/ |
39 |
40 |
40 class CommandConfig: |
41 class CommandConfig: |
41 public Command |
42 public Command, |
|
43 public SoeCommand |
42 { |
44 { |
43 public: |
45 public: |
44 CommandConfig(); |
46 CommandConfig(); |
45 |
47 |
46 string helpString() const; |
48 string helpString(const string &) const; |
47 void execute(const StringVector &); |
49 void execute(const StringVector &); |
48 |
50 |
49 protected: |
51 protected: |
50 struct Info { |
52 struct Info { |
51 string alias; |
53 string alias; |