tool/CommandXml.h
author Florian Pose <fp@igh-essen.com>
Fri, 25 Jul 2008 09:08:12 +0000
changeset 1148 1762296870bd
parent 1142 59be91dfcbe1
child 1151 1fc1535dec29
permissions -rw-r--r--
Renamed state field to al_state.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDXML_H__
#define __COMMANDXML_H__

#include "Command.h"

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

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

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

    protected:
        void generateSlaveXml(MasterDevice &, uint16_t);
};

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

#endif