init project

This commit is contained in:
Tang1705
2020-01-26 17:45:44 +08:00
commit 9f79c4a679
50 changed files with 823 additions and 0 deletions

10
Classes/main.cpp Normal file
View File

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