Files
intelliphoto/IntelliPhoto/Scribble/main.cpp
2019-11-21 13:02:00 +01:00

27 lines
366 B
C++

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