// // Created by camer on 22/05/2020. // #ifndef PROJET_VICTORAVECUNK_MENU_H #define PROJET_VICTORAVECUNK_MENU_H #include #include class Menu { protected: int id; int nbreChoices; int choice; std::list> list; std::list listId; public: Menu(); std::string getMessage(); void nextChoice(); int getId() const; void previousChoice(); void menuBack(); void menuNext(); std::string displayDefault(float temp, float press, int rad, int tap, int nbTortue); }; #endif //PROJET_VICTORAVECUNK_MENU_H