DLA-Fire-Prediction-Thesis 1.0

main.cpp

Go to the documentation of this file.
00001 //----------------------------------------------------------------------------------------------------------------------
00004 //----------------------------------------------------------------------------------------------------------------------
00005 
00006 #include <QtGui/QApplication>
00007 #include "MainWindow.h"
00008 
00009 //----------------------------------------------------------------------------------------------------------------------
00010 /* this code runs the basic main window and is created by the Qt Creator app */
00011 int main(int argc, char *argv[])
00012 {
00013   // make an instance of the QApplication
00014   QApplication a(argc, argv);
00015   // Create a new MainWindow
00016   MainWindow w;
00017   // show it
00018   w.show();
00019   // hand control over to Qt framework
00020   return a.exec();
00021 }
 All Classes Namespaces Files Functions Variables Enumerations Enumerator