diff -r da3d22a27500 -r 09c6fce1ae45 tool/CommandFoeWrite.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool/CommandFoeWrite.h Mon Jan 26 13:01:58 2009 +0000 @@ -0,0 +1,29 @@ +/***************************************************************************** + * + * $Id:$ + * + ****************************************************************************/ + +#ifndef __COMMANDFOEWRITE_H__ +#define __COMMANDFOEWRITE_H__ + +#include "FoeCommand.h" + +/****************************************************************************/ + +class CommandFoeWrite: + public FoeCommand +{ + public: + CommandFoeWrite(); + + string helpString() const; + void execute(MasterDevice &, const StringVector &); + + protected: + void loadFoeData(ec_ioctl_slave_foe_t *, const istream &); +}; + +/****************************************************************************/ + +#endif