Ignore:
Timestamp:
Dec 16, 2009, 2:40:09 PM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
38546d
Parents:
c2c893
Message:

Improved documentation for menu framework.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/Menu/Menu.hpp

    rc2c893 rda09909  
    1313class MenuItem;
    1414
     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 */
    1521class Menu
    1622{
     
    1925  virtual ~Menu();
    2026
     27
     28  /**
     29   * Adding and removing should be handled by the items.
     30   */
    2131  virtual void addItem(MenuItem*)=0;
     32  /**
     33   * Adding and removing should be handled by the items.
     34   */
    2235  virtual void removeItem(MenuItem*)=0;
    2336  virtual void display()=0;
Note: See TracChangeset for help on using the changeset viewer.