Files
ethercat/tool/CommandMaster.h
2008-07-24 13:27:06 +00:00

27 lines
598 B
C++

/*****************************************************************************
*
* $Id$
*
****************************************************************************/
#ifndef __COMMANDMASTER_H__
#define __COMMANDMASTER_H__
#include "Command.h"
/****************************************************************************/
class CommandMaster:
public Command
{
public:
CommandMaster();
string helpString() const;
void execute(MasterDevice &, const StringVector &);
};
/****************************************************************************/
#endif