main_ecmr.cpp
Go to the documentation of this file.
00001 
00008 /*****************************************************************************
00009 ** Includes
00010 *****************************************************************************/
00011 
00012 #include <QtGui>
00013 #include <QApplication>
00014 #include "../include/tibi_dabo_gui/main_window_ecmr.hpp"
00015 #include <ros/ros.h>
00016 
00017 /*****************************************************************************
00018 ** Main
00019 *****************************************************************************/
00020 
00021 int main(int argc, char **argv) {
00022 
00023     /*********************
00024     ** Qt
00025     **********************/
00026     QApplication app(argc, argv);
00027     ros::init(argc,argv,"tibi_dabo_gui");
00028     tibi_dabo_gui::MainWindow w(argc,argv);
00029     w.showMaximized();
00030     //w.showFullScreen();
00031     w.show();
00032     app.connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()));
00033     int result = app.exec();
00034 
00035         return result;
00036 }


tibi_dabo_gui
Author(s): fherrero
autogenerated on Fri Dec 6 2013 22:01:34