tool/CommandSdos.h
author Florian Pose <fp@igh-essen.com>
Mon, 28 Jul 2008 14:43:00 +0000
changeset 1167 9e0ebb38e301
parent 1151 1fc1535dec29
child 1184 75cd6681eb08
permissions -rw-r--r--
Improved help.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDSDOS_H__
#define __COMMANDSDOS_H__

#include "Command.h"

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

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

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

    protected:
		void listSlaveSdos(MasterDevice &, const ec_ioctl_slave_t &, bool);
};

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

#endif