T'JAMPENS QUENTIN p2406187 1011a9f123 Fix issues
2025-06-20 16:51:11 +02:00

21 lines
416 B
C++

#include "mainwindow.h"
#include "path.h"
#include <QApplication>
#include <step.h>
#include <QFile>
#include <web.h>
using namespace std;
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
QStringList fichiers = {"data/parcours1.json", "data/parcours2.json"};
w.loadAndExportPaths(fichiers);
Web u(w.getPath());
u.siteHtml();
w.show();
return a.exec();
}