working versiom

This commit is contained in:
Sonaion
2019-11-21 13:02:00 +01:00
parent d275793da6
commit 9f318217a8
22 changed files with 1321 additions and 491 deletions

View File

@@ -0,0 +1,26 @@
// ---------- main.cpp ----------
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
// The main application
QApplication app(argc, argv);
// Create and open the main window
MainWindow window;
window.show();
// Display the main window
return app.exec();
}
// ---------- END main.cpp ----------