cleanup master

This commit is contained in:
Jonas Mucke
2019-12-04 17:48:58 +01:00
parent 5356c95595
commit 15c5f9883d
40 changed files with 4694 additions and 0 deletions

20
Painting/main.cpp Normal file
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();
}