ui 0.2 添加loading界面 待美观

This commit is contained in:
Norah
2020-02-01 21:26:08 +08:00
parent c0cb15818b
commit 178c1ac179
5 changed files with 140 additions and 6 deletions

View File

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