initialise path.h

This commit is contained in:
iutbgdin 2025-06-18 14:34:53 +02:00
parent cb03e1f91f
commit 9b02342369

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