added Qt Example, next change it to fit my project
This commit is contained in:
12
QtMeshViewer/main.cpp
Normal file
12
QtMeshViewer/main.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "Header\MainWindow.h"
|
||||
#include <QtWidgets/QApplication>
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
|
||||
MainWindow w;
|
||||
w.show();
|
||||
return a.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user