2025-06-18 14:34:53 +02:00

24 lines
326 B
C++

#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