Custom menu

Fork of Menu by Peihsun Yeh

Revision:
3:3fceb6ff921e
Parent:
2:2654dc659298
Child:
4:396eff5be1a1
--- a/Selection.h	Tue Mar 05 21:24:37 2013 +0000
+++ b/Selection.h	Thu Feb 26 11:57:11 2015 +0000
@@ -6,16 +6,16 @@
 class Menu; 
 
 class Selection {
-    private:
-        
     public:
+        Selection(void (*)(), int, Menu *, const char *);
         void (*fun)();   // pointer to a function to execute 
-        char* selText;   // selection text
+        const char* selText;   // selection text
         int pos;         // selection position
         Menu *childMenu; 
         
-        Selection(void (*)(), int, Menu *, char *); 
+    private:
+
          
 };
 
-#endif 
\ No newline at end of file
+#endif