Custom menu

Fork of Menu by Peihsun Yeh

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Menu.cpp Source File

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