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
00001 #include "mbed.h" 00002 #include "Menu.h" 00003 #include "Selection.h" 00004 00005 Menu::Menu(const char *id, Menu *parent) : menuID(id), parent(parent) 00006 { 00007 selections.clear(); 00008 } 00009 00010 void Menu::add(const Selection &toAdd) 00011 { 00012 selections.push_back(toAdd); 00013 } 00014 00015
Generated on Sat Jul 23 2022 03:26:07 by
1.7.2
