This commit is contained in:
Alexis Delhaie
2020-12-02 19:17:30 +01:00
commit 0f3aeb0b3f
7 changed files with 657 additions and 0 deletions

11
main.cpp Normal file
View File

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