Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: Menu.h
- Revision:
- 1:84d263c8932d
- Parent:
- 0:577f0ec71f4c
--- 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);