Fixed duplicate alias command.
/*****************************************************************************
*
* $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 &, uint16_t, bool);
};
/****************************************************************************/
#endif