tool/CommandStates.h
author Florian Pose <fp@igh-essen.com>
Fri, 25 Jul 2008 08:52:45 +0000
changeset 1146 f18d124d7fbc
parent 1142 59be91dfcbe1
child 1149 f1fce286d53b
permissions -rw-r--r--
Moved slaveState() to Command::alStateString().
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDSTATES_H__
#define __COMMANDSTATES_H__

#include "Command.h"

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

class CommandStates:
    public Command
{
    public:
        CommandStates();

        string helpString() const;
        void execute(MasterDevice &, const StringVector &);

    protected:
};

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

#endif