mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-07 12:21:49 +08:00
27 lines
594 B
C++
27 lines
594 B
C++
/*****************************************************************************
|
|
*
|
|
* $Id$
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __COMMANDDEBUG_H__
|
|
#define __COMMANDDEBUG_H__
|
|
|
|
#include "Command.h"
|
|
|
|
/****************************************************************************/
|
|
|
|
class CommandDebug:
|
|
public Command
|
|
{
|
|
public:
|
|
CommandDebug();
|
|
|
|
string helpString() const;
|
|
void execute(MasterDevice &, const StringVector &);
|
|
};
|
|
|
|
/****************************************************************************/
|
|
|
|
#endif
|