tool/CommandMaster.h
author Florian Pose <fp@igh-essen.com>
Wed, 05 Nov 2008 15:40:15 +0000
changeset 1309 d9f775cbbc1e
parent 1142 59be91dfcbe1
child 1363 11c0b2caa253
permissions -rw-r--r--
Typo.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDMASTER_H__
#define __COMMANDMASTER_H__

#include "Command.h"

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

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

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

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

#endif