Files
intelliphoto/IntelliPhoto/Painting/main.cpp
Jonas Mucke 54e1f89003 Revert "Merge branch 'MuckeMachtSachen' into 'Dev'"
This reverts merge request !9
2019-12-05 16:17:07 +00:00

21 lines
291 B
C++

#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();
}