equal
deleted
inserted
replaced
35 #include "Command.h" |
35 #include "Command.h" |
36 #include "DataTypeHandler.h" |
36 #include "DataTypeHandler.h" |
37 |
37 |
38 /****************************************************************************/ |
38 /****************************************************************************/ |
39 |
39 |
40 class SoeCommand: |
40 class SoeCommand |
41 public Command, |
|
42 public DataTypeHandler |
|
43 { |
41 { |
44 public: |
|
45 SoeCommand(const string &, const string &); |
|
46 |
|
47 protected: |
42 protected: |
48 static uint16_t parseIdn(const string &); |
43 static uint16_t parseIdn(const string &); |
|
44 static std::string outputIdn(uint16_t); |
49 static std::string errorMsg(uint16_t); |
45 static std::string errorMsg(uint16_t); |
50 }; |
46 }; |
51 |
47 |
52 /****************************************************************************/ |
48 /****************************************************************************/ |
53 |
49 |