tool/CommandMaster.h
author Florian Pose <fp@igh-essen.com>
Wed, 05 Nov 2008 10:07:22 +0000
branchstable-1.4
changeset 1653 595c8f51d720
parent 1142 59be91dfcbe1
child 1363 11c0b2caa253
permissions -rw-r--r--
Fixed WC calculation for multiple datagrams.
/*****************************************************************************
 *
 * $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