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.h
00001 #ifndef MENU_H 00002 #define MENU_H 00003 00004 #include "mbed.h" 00005 #include "Selection.h" 00006 #include <vector> 00007 00008 class Selection; 00009 00010 class Menu { 00011 public: 00012 vector<Selection> selections; 00013 00014 Menu(const char *, Menu *parent); 00015 const char *menuID; 00016 Menu *parent; 00017 00018 void add(const Selection &toAdd); 00019 char *getText(int); 00020 private: 00021 00022 }; 00023 #endif
Generated on Sat Jul 23 2022 03:26:07 by
1.7.2
