4 errors

Dependencies:   KS0108_PCF8574 mbed

Committer:
GuiTwo
Date:
Wed Sep 05 07:21:59 2012 +0000
Revision:
0:936f1c020120
With KS0108;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GuiTwo 0:936f1c020120 1 #ifndef _MENBED_H_
GuiTwo 0:936f1c020120 2 #define _MENBED_H_
GuiTwo 0:936f1c020120 3
GuiTwo 0:936f1c020120 4 #include "menbedButtonEvent.h"
GuiTwo 0:936f1c020120 5 #include "menbedButtonHandler.h"
GuiTwo 0:936f1c020120 6 #include "menbedButtonHandlerTimespec.h"
GuiTwo 0:936f1c020120 7 #include "menbedNavigator.h"
GuiTwo 0:936f1c020120 8 #include "menbedMenu.h"
GuiTwo 0:936f1c020120 9 #include "menbedMenuItem.h"
GuiTwo 0:936f1c020120 10 #include "menbedRefresher.h"
GuiTwo 0:936f1c020120 11
GuiTwo 0:936f1c020120 12
GuiTwo 0:936f1c020120 13 //#include "../KS0108_PCF8574/KS0108.h"
GuiTwo 0:936f1c020120 14 #include "../displays/include/menbedDisplayHD44780.h"
GuiTwo 0:936f1c020120 15
GuiTwo 0:936f1c020120 16
GuiTwo 0:936f1c020120 17 class Menbed {
GuiTwo 0:936f1c020120 18 public:
GuiTwo 0:936f1c020120 19 Menbed (PinName select, PinName down, PinName up, PinName cancel,
GuiTwo 0:936f1c020120 20 MenbedMenu *rootMenu,
GuiTwo 0:936f1c020120 21 MenbedDisplay *display);
GuiTwo 0:936f1c020120 22
GuiTwo 0:936f1c020120 23 Menbed (PinName select, PinName down, PinName up,
GuiTwo 0:936f1c020120 24 MenbedMenu *rootMenu,
GuiTwo 0:936f1c020120 25 MenbedDisplay *display);
GuiTwo 0:936f1c020120 26
GuiTwo 0:936f1c020120 27 Menbed (PinName select, PinName down,
GuiTwo 0:936f1c020120 28 MenbedMenu *rootMenu,
GuiTwo 0:936f1c020120 29 MenbedDisplay *display);
GuiTwo 0:936f1c020120 30
GuiTwo 0:936f1c020120 31 Menbed (PinName select, PinName down, PinName up, PinName cancel,
GuiTwo 0:936f1c020120 32 MenbedButtonHandlerTimespec *timespec,
GuiTwo 0:936f1c020120 33 MenbedMenu *rootMenu,
GuiTwo 0:936f1c020120 34 MenbedDisplay *display);
GuiTwo 0:936f1c020120 35
GuiTwo 0:936f1c020120 36 ~Menbed ();
GuiTwo 0:936f1c020120 37 protected:
GuiTwo 0:936f1c020120 38 MenbedButtonHandler *buttonHandler;
GuiTwo 0:936f1c020120 39 MenbedNavigator *navigator;
GuiTwo 0:936f1c020120 40 MenbedDisplayer *displayer;
GuiTwo 0:936f1c020120 41 MenbedRefresher *refresher;
GuiTwo 0:936f1c020120 42 };
GuiTwo 0:936f1c020120 43
GuiTwo 0:936f1c020120 44 #endif /* _MENBED_H_ */