fp@1142: /***************************************************************************** fp@1142: * fp@1142: * $Id$ fp@1142: * fp@1142: ****************************************************************************/ fp@1142: fp@1142: #ifndef __COMMANDSIIREAD_H__ fp@1142: #define __COMMANDSIIREAD_H__ fp@1142: fp@1142: #include "Command.h" fp@1142: fp@1142: /****************************************************************************/ fp@1142: fp@1142: class CommandSiiRead: fp@1142: public Command fp@1142: { fp@1142: public: fp@1142: CommandSiiRead(); fp@1142: fp@1142: string helpString() const; fp@1142: void execute(MasterDevice &, const StringVector &); fp@1142: fp@1142: protected: fp@1142: struct CategoryName { fp@1142: uint16_t type; fp@1142: const char *name; fp@1142: }; fp@1142: static const CategoryName categoryNames[]; fp@1142: static const char *getCategoryName(uint16_t); fp@1142: }; fp@1142: fp@1142: /****************************************************************************/ fp@1142: fp@1142: #endif