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