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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
// NOLINTBEGIN(*)
#include <tango/tango.h>
//
// Define classes for two commands
//
class IOSeqVecChar : public Tango::Command
{
public:
IOSeqVecChar(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOSeqVecChar() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
class IOSeqVecShort : public Tango::Command
{
public:
IOSeqVecShort(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOSeqVecShort() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
class IOSeqVecLong : public Tango::Command
{
public:
IOSeqVecLong(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOSeqVecLong() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
class IOSeqVecFloat : public Tango::Command
{
public:
IOSeqVecFloat(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOSeqVecFloat() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
class IOSeqVecDouble : public Tango::Command
{
public:
IOSeqVecDouble(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOSeqVecDouble() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
class IOSeqVecUShort : public Tango::Command
{
public:
IOSeqVecUShort(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOSeqVecUShort() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
class IOSeqVecULong : public Tango::Command
{
public:
IOSeqVecULong(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOSeqVecULong() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
class IOSeqVecString : public Tango::Command
{
public:
IOSeqVecString(const char *, Tango::CmdArgType, Tango::CmdArgType, const char *, const char *);
~IOSeqVecString() { }
virtual bool is_allowed(Tango::DeviceImpl *, const CORBA::Any &);
virtual CORBA::Any *execute(Tango::DeviceImpl *, const CORBA::Any &);
};
// NOLINTEND(*)
|