mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-09-27 20:44:00 +08:00
Sourced out data type handling into an own class.
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user