mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-12 19:40:28 +02:00
21 lines
291 B
C++
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();
|
|
}
|
|
|
|
|
|
|
|
|