tool/SoeCommand.h
changeset 2011 04fdb4abf120
parent 1966 23c638a81fe7
equal deleted inserted replaced
2010:87de63b19e4c 2011:04fdb4abf120
    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