27 lines
575 B
C++
27 lines
575 B
C++
/*****************************************************************************
|
|
*
|
|
* $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
|