Changeset da09909 for molecuilder/src/Menu/Menu.hpp
- Timestamp:
- Dec 16, 2009, 2:40:09 PM (16 years ago)
- Children:
- 38546d
- Parents:
- c2c893
- File:
-
- 1 edited
-
molecuilder/src/Menu/Menu.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Menu/Menu.hpp
rc2c893 rda09909 13 13 class MenuItem; 14 14 15 /** 16 * Base class for all Types of menus 17 * contains basic abstract functionality to add Items, remove Items and display the menu 18 * 19 * TODO: Make sure all items are only added once. 20 */ 15 21 class Menu 16 22 { … … 19 25 virtual ~Menu(); 20 26 27 28 /** 29 * Adding and removing should be handled by the items. 30 */ 21 31 virtual void addItem(MenuItem*)=0; 32 /** 33 * Adding and removing should be handled by the items. 34 */ 22 35 virtual void removeItem(MenuItem*)=0; 23 36 virtual void display()=0;
Note:
See TracChangeset
for help on using the changeset viewer.
