Go to the documentation of this file.00001 #include <QtGui/QApplication>
00002 #include "MainWindow.h"
00003
00004 #include <QApplication>
00005 #include <QObject>
00006
00007 #include "QtRosNode.h"
00008
00009 #include <sstream>
00010
00011 #include "ros/ros.h"
00012
00013 int main(int argc, char *argv[])
00014 {
00015
00016
00017
00018 QApplication a(argc, argv);
00019 MainWindow window;
00020 QtRosNode qtRosNode(argc, argv,"obj_rec_gui", &window);
00021 qtRosNode.start();
00022 window.show();
00023
00024
00025
00026 window.setQtRosNode(qtRosNode);
00027
00028
00029 a.exec();
00030 }