Files
ethercat/tool/CommandStates.h
Florian Pose 329ac89916 Minor change.
2008-07-25 14:10:04 +00:00

27 lines
598 B
C++

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