tool/FoeCommand.h
author Florian Pose <fp@igh-essen.com>
Wed, 04 Feb 2009 17:37:06 +0000
changeset 1354 e2fb03ca54ef
parent 1336 e27b37e80a99
child 1363 11c0b2caa253
permissions -rw-r--r--
builddir and srcdir, tbc.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __FOECOMMAND_H__
#define __FOECOMMAND_H__

#include "Command.h"

/****************************************************************************/

class FoeCommand:
    public Command
{
    public:
        FoeCommand(const string &, const string &);

    protected:
		static std::string resultText(int);
		static std::string errorText(int);
};

/****************************************************************************/

#endif