#include #include "mainwindow.h" //#include /** * This is the main function. A QApplication will be generated here to present a MainWindow. * @param argc * @param argv[] * @return */ int main(int argc, char* argv[]) { QApplication app( argc, argv ); // create a new instance of CMainWindow MainWindow mainWindow; mainWindow.show(); // Enters the main event loop and waits until exit() is called // or the main widget is destroyed, and Returns the value that // was set via to exit() (which is 0 if exit() is called via quit()). return app.exec(); }