#include "mainwindow.h"
#include <qapplication.h>
Go to the source code of this file.
Functions | |
int | main (int argc, char **argv) |
Main function in the GUI application. |
|
Main function in the GUI application. Function to start the GUI. Definition at line 13 of file main.cpp. 00013 {
00014 QApplication app(argc, argv );
00015 MainWindow window;
00016 window.show();
00017 app.connect( &app, SIGNAL( lastWindowClosed() ), &app, SLOT( quit() ) );
00018 return app.exec();
00019 }
|