Added new Project using Qt,

There is garbage left from Qt??
This commit is contained in:
Anakin
2016-12-09 15:56:45 +01:00
parent 1c5a33cfa7
commit 8cf86a41eb
9 changed files with 178 additions and 0 deletions

17
MeshViewerQt/main.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include "MainWindow.h"
#include <QtWidgets/QApplication>
int startGUI(int argc, char* argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
int main(int argc, char *argv[])
{
int exitstatus = startGUI(argc, argv);
return exitstatus;
}