Merge branch 'feature/Path' into 'main'

initialise path.h

See merge request p2406187/sae201!1
This commit is contained in:
T'JAMPENS QUENTIN p2406187 2025-06-18 12:36:50 +00:00
commit 148e774c83

23
path.h Normal file
View File

@ -0,0 +1,23 @@
#ifndef PATH_H
#define PATH_H
#include <QMainWindow>
class Path
{
private:
QString city;
int departement;
QString name;
unsigned int difficulty;
float duration;
float length;
QString image;
QList<Step> step;
public:
Path();
Path(QFile *file);
void addStep();
};
#endif // PATH_H