Sourced out data type handling into an own class.

This commit is contained in:
Florian Pose
2010-03-05 13:39:57 +01:00
parent f904612136
commit 4fa95c9d06
18 changed files with 373 additions and 416 deletions
+3 -4
View File
@@ -31,20 +31,19 @@
#define __COMMANDSOEREAD_H__
#include "Command.h"
#include "DataTypeHandler.h"
/****************************************************************************/
class CommandSoeRead:
public Command
public Command,
public DataTypeHandler
{
public:
CommandSoeRead();
string helpString() const;
void execute(const StringVector &);
protected:
static void printRawData(const uint8_t *, unsigned int);
};
/****************************************************************************/