Summerize Abgabe

This commit is contained in:
Jan Schuffenhauer
2019-11-28 16:39:47 +01:00
parent 43c5489343
commit 8b88626cdf
22 changed files with 2353 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#include "GUI/IntelliPhotoGui.h"
#include <QApplication>
#include <QDebug>
int main(int argc, char *argv[])
{
// The main application
QApplication app(argc, argv);
// Create and open the main window
IntelliPhotoGui window;
window.show();
return app.exec();
}