Library to display menus on TextLCDs. Interaction with functions Up,Down and Select (Buttons or RPG) Based on menu-library from pyeh9
Fork of Menu by
Library to display menus on TextLCDs. Interaction with functions Up,Down and Select (Buttons or RPG) Based on menu-library from pyeh9
Diff: Menu.h
- Revision:
- 1:84d263c8932d
- Parent:
- 0:577f0ec71f4c
- Child:
- 6:819049708d51
--- a/Menu.h Thu Feb 28 22:19:37 2013 +0000
+++ b/Menu.h Tue Mar 05 20:33:27 2013 +0000
@@ -5,12 +5,16 @@
#include "Selection.h"
#include <vector>
+class Selection;
+
class Menu {
private:
public:
vector<Selection> selections;
- Menu();
+ char *menuID;
+
+ Menu(char *);
void add(const Selection &toAdd);
char *getText(int);
