This commit is contained in:
Sonaion
2019-12-05 16:56:12 +01:00
parent abcdad851a
commit 499c5c793b
24 changed files with 3767 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);
//some nice ass looking comment
// Create and open the main window
IntelliPhotoGui window;
window.show();
return app.exec();
}