diff -r 7ffbca63fc72 -r 59be91dfcbe1 tool/CommandPdos.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool/CommandPdos.h Thu Jul 24 13:27:06 2008 +0000 @@ -0,0 +1,29 @@ +/***************************************************************************** + * + * $Id$ + * + ****************************************************************************/ + +#ifndef __COMMANDPDOS_H__ +#define __COMMANDPDOS_H__ + +#include "Command.h" + +/****************************************************************************/ + +class CommandPdos: + public Command +{ + public: + CommandPdos(); + + string helpString() const; + void execute(MasterDevice &, const StringVector &); + + protected: + void listSlavePdos(MasterDevice &, uint16_t, bool); +}; + +/****************************************************************************/ + +#endif