diff -r c55ebaa206f8 -r 11ec009e145d tool/FoeCommand.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool/FoeCommand.h Mon Jan 19 10:18:41 2009 +0000 @@ -0,0 +1,26 @@ +/***************************************************************************** + * + * $Id$ + * + ****************************************************************************/ + +#ifndef __FOECOMMAND_H__ +#define __FOECOMMAND_H__ + +#include "Command.h" + +/****************************************************************************/ + +class FoeCommand: + public Command +{ + public: + FoeCommand(const string &, const string &); + + protected: + static std::string errorString(int); +}; + +/****************************************************************************/ + +#endif