Custom menu

Fork of Menu by Peihsun Yeh

Revision:
3:3fceb6ff921e
Parent:
1:84d263c8932d
--- a/Menu.h	Tue Mar 05 21:24:37 2013 +0000
+++ b/Menu.h	Thu Feb 26 11:57:11 2015 +0000
@@ -8,15 +8,16 @@
 class Selection;
 
 class Menu {
-    private:
-               
     public:
         vector<Selection> selections;
-        char *menuID;
         
-        Menu(char *);
+        Menu(const char *, Menu *parent);
+        const char *menuID;
+        Menu *parent;
         
         void add(const Selection &toAdd);
         char *getText(int);
+    private:
+
 };
-#endif
\ No newline at end of file
+#endif