4 errors

Dependencies:   KS0108_PCF8574 mbed

Committer:
GuiTwo
Date:
Tue Sep 11 10:21:10 2012 +0000
Revision:
3:ec80bb6ff5da
Parent:
0:936f1c020120
4 errors on vector .cc

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GuiTwo 0:936f1c020120 1 #include "mbed.h"
GuiTwo 0:936f1c020120 2 #include "include/menbedMenuItem.h"
GuiTwo 0:936f1c020120 3
GuiTwo 0:936f1c020120 4 MenbedMenuItem::MenbedMenuItem (void (*selFcn)(), MenbedMenu **childMenu,
GuiTwo 0:936f1c020120 5 bool childMenuIsAncestor, MenbedMenuParam *param, char *text) :
GuiTwo 0:936f1c020120 6 selFcn(selFcn), childMenu(childMenu),
GuiTwo 0:936f1c020120 7 childMenuIsAncestor(childMenuIsAncestor), param(param),
GuiTwo 0:936f1c020120 8 text(text)
GuiTwo 0:936f1c020120 9 {}