// // 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; public: Menu(); std::string getMessage(); void nextChoice(); void update(std::string message); }; #endif //PROJET_VICTORAVECUNK_MENU_H