Adjust the LCD_Menu to use the mBed Application board resources

Dependents:   class_project_main

Fork of SerialLCD_Menu by Mark Shuck

Selection.cpp

Committer:
mshuck
Date:
2013-08-04
Revision:
3:920157b558db
Parent:
1:84d263c8932d
Child:
6:a28c1967bb83

File content as of revision 3:920157b558db:

#include "mbed.h"
#include "Selection.h"
#include "SerialLCD.h"

Selection::Selection(void (*fun)(), int position, Menu *child, char* text) : 
    fun(fun), selText(text), pos(position), childMenu(child) {}