tool/CommandData.h
author Florian Pose <fp@igh-essen.com>
Thu, 24 Jul 2008 13:29:13 +0000
changeset 1143 09ee878d7214
parent 1142 59be91dfcbe1
child 1166 006244d53f68
permissions -rw-r--r--
Fixed duplicate alias command.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDDATA_H__
#define __COMMANDDATA_H__

#include "Command.h"

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

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

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

    protected:
		void outputDomainData(MasterDevice &, unsigned int);
};

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

#endif