|
Last change
on this file since 7cb300 was 7cb300, checked in by Frederik Heber <heber@…>, 16 years ago |
|
Changed formating of menus and added protection to keep MenuItems from being added twice. Signed-off-by: Tillmann Crueger <crueger@…>
|
-
Property mode
set to
100644
|
|
File size:
378 bytes
|
| Line | |
|---|
| 1 | #ifndef SUBMENUITEM_H_
|
|---|
| 2 | #define SUBMENUITEM_H_
|
|---|
| 3 |
|
|---|
| 4 | #include "MenuItem.hpp"
|
|---|
| 5 | #include "TextMenu.hpp"
|
|---|
| 6 |
|
|---|
| 7 | class Menu;
|
|---|
| 8 |
|
|---|
| 9 | class SubMenuItem : public MenuItem, public TextMenu
|
|---|
| 10 | {
|
|---|
| 11 | public:
|
|---|
| 12 | SubMenuItem(char,const char*,Menu *,ostream&,string,char,int);
|
|---|
| 13 | SubMenuItem(char,const char*,Menu *,ostream&,string);
|
|---|
| 14 | virtual ~SubMenuItem();
|
|---|
| 15 |
|
|---|
| 16 | virtual void trigger();
|
|---|
| 17 | };
|
|---|
| 18 |
|
|---|
| 19 | #endif /* SUBMENUITEM_H_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.