This commit is contained in:
Mienek
2020-01-23 13:15:37 +01:00
parent 9651dd98e3
commit c8b0328f63
8 changed files with 26 additions and 189 deletions

View File

@@ -2,11 +2,16 @@
#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();