Austin Terrell / Menu
Committer:
austinterrell
Date:
Tue Dec 03 19:37:11 2019 +0000
Revision:
3:3c6551467d77
Parent:
2:2654dc659298
Removed some unwanted debug code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pyeh9 0:577f0ec71f4c 1 #ifndef SELECTION_H
pyeh9 0:577f0ec71f4c 2 #define SELECTION_H
pyeh9 0:577f0ec71f4c 3
pyeh9 1:84d263c8932d 4 #include "Menu.h"
pyeh9 1:84d263c8932d 5
pyeh9 1:84d263c8932d 6 class Menu;
pyeh9 1:84d263c8932d 7
pyeh9 0:577f0ec71f4c 8 class Selection {
pyeh9 0:577f0ec71f4c 9 private:
pyeh9 0:577f0ec71f4c 10
pyeh9 0:577f0ec71f4c 11 public:
pyeh9 2:2654dc659298 12 void (*fun)(); // pointer to a function to execute
austinterrell 3:3c6551467d77 13 char *selText; // selection text
pyeh9 1:84d263c8932d 14 Menu *childMenu;
pyeh9 0:577f0ec71f4c 15
austinterrell 3:3c6551467d77 16 Selection(void (*)(), Menu *, char *);
pyeh9 0:577f0ec71f4c 17 };
pyeh9 0:577f0ec71f4c 18
pyeh9 0:577f0ec71f4c 19 #endif