Added new Project using Qt,
There is garbage left from Qt??
This commit is contained in:
17
MeshViewerQt/main.cpp
Normal file
17
MeshViewerQt/main.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user