1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
// NOLINTBEGIN(*)
#include <tango/tango.h>
//
// Define classes for two commands
//
class IOStr1 : public Tango::Command
{
public:
IOStr1(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOStr1() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
class IOPollStr1 : public Tango::Command
{
public:
IOPollStr1(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOPollStr1() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
long num;
};
// NOLINTEND(*)
|