Files
intelliphoto/IntelliPhoto/Painting/main.cpp
Jan Schuffenhauer ef65bcd983 Muckes zeug
2019-12-05 17:30:41 +01:00

21 lines
326 B
C++

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