Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00019
00025 #ifndef QT_ROS_H
00026 #define QT_ROS_H
00027 #include "ros/ros.h"
00028 #include <QThread>
00029 #include <QObject>
00030
00031 class QtROS : public QThread {
00032 Q_OBJECT
00033
00034 public:
00038 QtROS(int argc, char *argv[], const char* node_name);
00039 ros::NodeHandle getNodeHandle(){ return *n; }
00041 void run();
00042 public Q_SLOTS:
00044 void quitNow();
00045 Q_SIGNALS:
00047 void rosQuits();
00048 private:
00049 bool quitfromgui;
00050 ros::NodeHandle* n;
00051 };
00052 #endif