tool/CommandDomains.h
author Florian Pose <fp@igh-essen.com>
Thu, 24 Jul 2008 13:27:06 +0000
changeset 1142 59be91dfcbe1
child 1166 006244d53f68
permissions -rw-r--r--
Redesigned command interface.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDDOMAINS_H__
#define __COMMANDDOMAINS_H__

#include "Command.h"

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

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

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

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

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

#endif