mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-06 03:41:52 +08:00
27 lines
609 B
C++
27 lines
609 B
C++
/*****************************************************************************
|
|
*
|
|
* $Id:$
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __COMMANDFOEREAD_H__
|
|
#define __COMMANDFOEREAD_H__
|
|
|
|
#include "FoeCommand.h"
|
|
|
|
/****************************************************************************/
|
|
|
|
class CommandFoeRead:
|
|
public FoeCommand
|
|
{
|
|
public:
|
|
CommandFoeRead();
|
|
|
|
string helpString() const;
|
|
void execute(MasterDevice &, const StringVector &);
|
|
};
|
|
|
|
/****************************************************************************/
|
|
|
|
#endif
|