4 errors
Dependencies: KS0108_PCF8574 mbed
menbed/include/menbedMenu.h@3:ec80bb6ff5da, 2012-09-11 (annotated)
- Committer:
- GuiTwo
- Date:
- Tue Sep 11 10:21:10 2012 +0000
- Revision:
- 3:ec80bb6ff5da
- Parent:
- 0:936f1c020120
4 errors on vector .cc
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
GuiTwo | 0:936f1c020120 | 1 | #ifndef _MENBEDMENU_H_ |
GuiTwo | 0:936f1c020120 | 2 | #define _MENBEDMENU_H_ |
GuiTwo | 0:936f1c020120 | 3 | |
GuiTwo | 0:936f1c020120 | 4 | #include <vector> |
GuiTwo | 0:936f1c020120 | 5 | |
GuiTwo | 0:936f1c020120 | 6 | #include "mbed.h" |
GuiTwo | 0:936f1c020120 | 7 | #include "menbedMenuItem.h" |
GuiTwo | 0:936f1c020120 | 8 | |
GuiTwo | 0:936f1c020120 | 9 | class MenbedMenuItem; |
GuiTwo | 0:936f1c020120 | 10 | |
GuiTwo | 0:936f1c020120 | 11 | class MenbedMenu { |
GuiTwo | 0:936f1c020120 | 12 | public: |
GuiTwo | 0:936f1c020120 | 13 | MenbedMenu *parentMenu; |
GuiTwo | 0:936f1c020120 | 14 | int8_t parentSelectedItemIndex; |
GuiTwo | 0:936f1c020120 | 15 | uint8_t parentTopOfScreenItemIndex; |
GuiTwo | 0:936f1c020120 | 16 | vector<MenbedMenuItem*> menuItems; |
GuiTwo | 0:936f1c020120 | 17 | |
GuiTwo | 0:936f1c020120 | 18 | MenbedMenu (uint8_t nItems, MenbedMenuItem *items[]); |
GuiTwo | 0:936f1c020120 | 19 | }; |
GuiTwo | 0:936f1c020120 | 20 | |
GuiTwo | 0:936f1c020120 | 21 | #endif /* _MENBEDMENU_H_ */ |