Files
intelliphoto/Abgabe/Abgabe 4/Painting/main.cpp
Jan Schuffenhauer 8b88626cdf Summerize Abgabe
2019-11-28 16:39:47 +01: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();
}