Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Menu/MenuItem.hpp

    r8f113e rf9352d  
    2121 */
    2222class MenuItem {
    23 private:
    24   char trigger;
    25   string *description;
    26   bool added;
    27 
    2823public:
    2924  MenuItem(char,const char*,Menu*);
     
    4136  bool wasAdded();
    4237
     38  virtual bool isActive();
     39
    4340protected:
    4441  void setDescription(string);
     42
     43private:
     44  char trigger;
     45  string *description;
     46  bool added;
    4547};
    4648
Note: See TracChangeset for help on using the changeset viewer.