Move files into src/

This commit is contained in:
Marcus Huderle
2018-09-26 18:33:08 -05:00
parent 911ba64637
commit 6102181738
89 changed files with 7271 additions and 7271 deletions

12
src/main.cpp Normal file
View File

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