mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-12 19:40:28 +02:00
27 lines
376 B
C++
27 lines
376 B
C++
|
|
|
|
|
|
|
|
// ---------- main.cpp ----------
|
|
|
|
#include "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();
|
|
}
|
|
|
|
// ---------- END main.cpp ----------
|
|
|
|
|
|
|