diff -r 7ffbca63fc72 -r 59be91dfcbe1 tool/CommandSiiRead.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool/CommandSiiRead.h Thu Jul 24 13:27:06 2008 +0000 @@ -0,0 +1,34 @@ +/***************************************************************************** + * + * $Id$ + * + ****************************************************************************/ + +#ifndef __COMMANDSIIREAD_H__ +#define __COMMANDSIIREAD_H__ + +#include "Command.h" + +/****************************************************************************/ + +class CommandSiiRead: + public Command +{ + public: + CommandSiiRead(); + + string helpString() const; + void execute(MasterDevice &, const StringVector &); + + protected: + struct CategoryName { + uint16_t type; + const char *name; + }; + static const CategoryName categoryNames[]; + static const char *getCategoryName(uint16_t); +}; + +/****************************************************************************/ + +#endif