mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-06 20:01:44 +08:00
42 lines
878 B
C++
42 lines
878 B
C++
/*****************************************************************************
|
|
*
|
|
* $Id$
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __COMMANDCONFIG_H__
|
|
#define __COMMANDCONFIG_H__
|
|
|
|
#include <list>
|
|
using namespace std;
|
|
|
|
#include "Command.h"
|
|
|
|
/****************************************************************************/
|
|
|
|
class CommandConfig:
|
|
public Command
|
|
{
|
|
public:
|
|
CommandConfig();
|
|
|
|
string helpString() const;
|
|
void execute(MasterDevice &, const StringVector &);
|
|
|
|
protected:
|
|
struct Info {
|
|
string alias;
|
|
string pos;
|
|
string ident;
|
|
string slavePos;
|
|
string state;
|
|
};
|
|
|
|
void showDetailedConfigs(MasterDevice &, const ConfigList &);
|
|
void listConfigs(MasterDevice &m, const ConfigList &);
|
|
};
|
|
|
|
/****************************************************************************/
|
|
|
|
#endif
|