main.cpp
Go to the documentation of this file.
00001 #include <QApplication>
00002 #include "ContinualPlanningMonitorWindow.h"
00003 #include <ros/ros.h>
00004 
00005 bool g_Quit = false;
00006 
00007 int main(int argc, char** argv)
00008 {
00009     ros::init(argc, argv, "continual_planning_monitor");
00010 
00011     QApplication app(argc, argv);
00012 
00013     ros::NodeHandle nh;
00014 
00015     ContinualPlanningMonitorWindow mw;
00016     mw.show();
00017 
00018     ros::Rate loopRate(100.0);
00019     while(!g_Quit && ros::ok() && mw.isVisible()) {
00020         ros::spinOnce();
00021         app.processEvents();
00022 
00023         loopRate.sleep();
00024     }
00025 
00026     return 0;
00027 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends


continual_planning_monitor
Author(s): Christian Dornhege
autogenerated on Tue Jan 22 2013 12:24:57