diff -r 30714bab3a04 -r ce1a65f06efc tool/CommandPhyWrite.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool/CommandPhyWrite.h Wed Aug 13 13:23:52 2008 +0000 @@ -0,0 +1,29 @@ +/***************************************************************************** + * + * $Id$ + * + ****************************************************************************/ + +#ifndef __COMMANDPHYWRITE_H__ +#define __COMMANDPHYWRITE_H__ + +#include "Command.h" + +/****************************************************************************/ + +class CommandPhyWrite: + public Command +{ + public: + CommandPhyWrite(); + + string helpString() const; + void execute(MasterDevice &, const StringVector &); + + private: + void loadPhyData(ec_ioctl_slave_phy_t *, const istream &); +}; + +/****************************************************************************/ + +#endif