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.
Fork of Menu by
Menu.cpp
- Committer:
- charly
- Date:
- 2016-01-13
- Revision:
- 11:6814cbc83ae0
- Parent:
- 9:c9df0b33d176
File content as of revision 11:6814cbc83ae0:
#include "mbed.h" #include "Menu.h" #include "MenuItem.h" Menu::Menu(char *id) : menuID(id) { selections.clear(); CurrentSelection = 0; } void Menu::add(const MenuItem &toAdd) { selections.push_back(toAdd); } void Menu::changeText(int position, char *newText) { if ((position >=0) && (position <= selections.size())) { selections[position].selText = newText; } }