Initial files

This commit is contained in:
thepra
2017-08-28 08:17:35 +02:00
commit 54c03d7582
5 changed files with 118 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();
}