tool/CommandConfig.h
changeset 1826 ec6223c3b7ec
parent 1804 742607c464c4
child 1966 23c638a81fe7
equal deleted inserted replaced
1825:65781b048a47 1826:ec6223c3b7ec
    42 {
    42 {
    43     public:
    43     public:
    44         CommandConfig();
    44         CommandConfig();
    45 
    45 
    46         string helpString() const;
    46         string helpString() const;
    47         void execute(MasterDevice &, const StringVector &);
    47         void execute(const StringVector &);
    48 
    48 
    49     protected:
    49     protected:
    50         struct Info {
    50         struct Info {
    51             string alias;
    51             string alias;
    52             string pos;
    52             string pos;
    53             string ident;
    53             string ident;
    54             string slavePos;
    54             string slavePos;
    55             string state;
    55             string state;
    56         };
    56         };
    57 
    57 
    58         void showDetailedConfigs(MasterDevice &, const ConfigList &);
    58         void showDetailedConfigs(MasterDevice &, const ConfigList &, bool);
    59         void listConfigs(MasterDevice &m, const ConfigList &);
    59         void listConfigs(MasterDevice &m, const ConfigList &, bool);
    60 };
    60 };
    61 
    61 
    62 /****************************************************************************/
    62 /****************************************************************************/
    63 
    63 
    64 #endif
    64 #endif