#include "GUI/IntelliPhotoGui.h" #include 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(); }