tool/CommandSiiRead.h
changeset 1142 59be91dfcbe1
child 1363 11c0b2caa253
equal deleted inserted replaced
1141:7ffbca63fc72 1142:59be91dfcbe1
       
     1 /*****************************************************************************
       
     2  *
       
     3  * $Id$
       
     4  *
       
     5  ****************************************************************************/
       
     6 
       
     7 #ifndef __COMMANDSIIREAD_H__
       
     8 #define __COMMANDSIIREAD_H__
       
     9 
       
    10 #include "Command.h"
       
    11 
       
    12 /****************************************************************************/
       
    13 
       
    14 class CommandSiiRead:
       
    15     public Command
       
    16 {
       
    17     public:
       
    18         CommandSiiRead();
       
    19 
       
    20         string helpString() const;
       
    21         void execute(MasterDevice &, const StringVector &);
       
    22 
       
    23     protected:
       
    24 		struct CategoryName {
       
    25 			uint16_t type;
       
    26 			const char *name;
       
    27 		};
       
    28 		static const CategoryName categoryNames[];
       
    29 		static const char *getCategoryName(uint16_t);
       
    30 };
       
    31 
       
    32 /****************************************************************************/
       
    33 
       
    34 #endif