diff --git a/path.h b/path.h new file mode 100644 index 0000000..52ec154 --- /dev/null +++ b/path.h @@ -0,0 +1,23 @@ +#ifndef PATH_H +#define PATH_H + +#include + +class Path +{ +private: + QString city; + int departement; + QString name; + unsigned int difficulty; + float duration; + float length; + QString image; + QList step; +public: + Path(); + Path(QFile *file); + void addStep(); +}; + +#endif // PATH_H