mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-12 19:40:28 +02:00
21 lines
401 B
C++
21 lines
401 B
C++
#include "GUI/IntelliPhotoGui.h"
|
|
#include <QApplication>
|
|
#include <QDebug>
|
|
#include <vector>
|
|
#include <fstream>
|
|
|
|
int main(int argc, char*argv[]){
|
|
// The main application
|
|
QApplication app(argc, argv);
|
|
|
|
std::fstream file("test.txt");
|
|
file << "Hallo welt";
|
|
file.close();
|
|
|
|
// Create and open the main window
|
|
IntelliPhotoGui window;
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|