Adjust the LCD_Menu to use the mBed Application board resources

Dependents:   class_project_main

Fork of SerialLCD_Menu by Mark Shuck

Menu.cpp

Committer:
jakowisp
Date:
2013-09-12
Revision:
13:98d452550cbe
Parent:
1:84d263c8932d

File content as of revision 13:98d452550cbe:

#include "mbed.h"
#include "Menu.h"
#include "Selection.h"

Menu::Menu(char *id) : menuID(id)
{
    selections.clear();
}

void Menu::add(const Selection &toAdd)
{
    selections.push_back(toAdd);
}