Library of menu structure

Dependents:   lcd_menu

Committer:
pyeh9
Date:
Tue Mar 05 21:24:37 2013 +0000
Revision:
2:2654dc659298
Parent:
1:84d263c8932d
Second version - with comments

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pyeh9 0:577f0ec71f4c 1 #include "mbed.h"
pyeh9 0:577f0ec71f4c 2 #include "Selection.h"
pyeh9 0:577f0ec71f4c 3 #include "TextLCD.h"
pyeh9 0:577f0ec71f4c 4
pyeh9 1:84d263c8932d 5 Selection::Selection(void (*fun)(), int position, Menu *child, char* text) :
pyeh9 1:84d263c8932d 6 fun(fun), selText(text), pos(position), childMenu(child) {}