mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-07 20:31:50 +08:00
30 lines
674 B
C++
30 lines
674 B
C++
/*****************************************************************************
|
|
*
|
|
* $Id$
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __COMMANDDATA_H__
|
|
#define __COMMANDDATA_H__
|
|
|
|
#include "Command.h"
|
|
|
|
/****************************************************************************/
|
|
|
|
class CommandData:
|
|
public Command
|
|
{
|
|
public:
|
|
CommandData();
|
|
|
|
string helpString() const;
|
|
void execute(MasterDevice &, const StringVector &);
|
|
|
|
protected:
|
|
void outputDomainData(MasterDevice &, const ec_ioctl_domain_t &);
|
|
};
|
|
|
|
/****************************************************************************/
|
|
|
|
#endif
|