#ifndef MENU_H #define MENU_H #include "incl.h" #include "window.h" using namespace std; class menu { private: void init(vector& vec_choices); int i_choices, i_current; ITEM** p_items; MENU* p_menu; window* p_win; public: menu(vector& vec_choices); menu(string s_name, vector& vec_choices); ~menu(); window& get_window(); int run(); }; #endif