ActarrayInterface.hh
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef PTZINTERFACE_HH
00027 #define PTXINTERFACE_HH
00028
00029 #include "GazeboInterface.hh"
00030
00031
00032 typedef struct gz_actarray gz_actarray_t;
00033 namespace gazebo
00034 {
00040
00042 class ActarrayInterface : public GazeboInterface
00043 {
00045 public: ActarrayInterface(player_devaddr_t addr, GazeboDriver *driver,
00046 ConfigFile *cf, int section);
00047
00049 public: virtual ~ActarrayInterface();
00050
00052 public: virtual int ProcessMessage(QueuePointer &respQueue,
00053 player_msghdr_t *hdr, void *data);
00054
00056 public: virtual void Update();
00057
00060 public: virtual void Subscribe();
00061
00064 public: virtual void Unsubscribe();
00065
00066 private: gz_actarray_t *iface;
00067
00069 private: char *gz_id;
00070
00072 private: double datatime;
00073 };
00074
00077
00078
00079 }
00080 #endif