Files
ethercat/tool/CommandPhyWrite.h
2008-08-13 13:23:52 +00:00

30 lines
687 B
C++

/*****************************************************************************
*
* $Id$
*
****************************************************************************/
#ifndef __COMMANDPHYWRITE_H__
#define __COMMANDPHYWRITE_H__
#include "Command.h"
/****************************************************************************/
class CommandPhyWrite:
public Command
{
public:
CommandPhyWrite();
string helpString() const;
void execute(MasterDevice &, const StringVector &);
private:
void loadPhyData(ec_ioctl_slave_phy_t *, const istream &);
};
/****************************************************************************/
#endif