/***************************************************************************** * * $Id$ * ****************************************************************************/ #ifndef __COMMANDSDOS_H__ #define __COMMANDSDOS_H__ #include "Command.h" /****************************************************************************/ class CommandSdos: public Command { public: CommandSdos(); string helpString() const; void execute(MasterDevice &, const StringVector &); protected: void listSlaveSdos(MasterDevice &, const ec_ioctl_slave_t &, bool); }; /****************************************************************************/ #endif