Files
intelliphoto/IntelliPhoto/Painting/main.cpp
2019-11-26 17:26:43 +01:00

20 lines
303 B
C++

#include "GUI/IntelliPhotoGui.h"
#include <QApplication>
int main(int argc, char *argv[])
{
// The main application
QApplication app(argc, argv);
// Create and open the main window
IntelliPhotoGui window;
window.show();
// Display the main window
return app.exec();
}