Add getters

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-06-19 10:24:45 +02:00
parent 37000d8281
commit 078ca3a983
2 changed files with 49 additions and 1 deletions
+8
View File
@@ -21,6 +21,14 @@ public:
Path();
Path(QFile *file);
void addStep(int indice);
QString getCity() const;
int getDepartement() const;
QString getName() const;
unsigned int getDifficulty() const;
float getDuration() const;
float getLength() const;
QString getImage() const;
QList<Step> getStep() const;
};
#endif // PATH_H