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 _MENBEDDISPLAYER_H_
GuiTwo 0:936f1c020120 2 #define _MENBEDDISPLAYER_H_
GuiTwo 0:936f1c020120 3
GuiTwo 0:936f1c020120 4 #include "menbedMenuMessage.h"
GuiTwo 0:936f1c020120 5 #include "menbedDisplay.h"
GuiTwo 0:936f1c020120 6
GuiTwo 0:936f1c020120 7 class MenbedDisplayer {
GuiTwo 0:936f1c020120 8 public:
GuiTwo 0:936f1c020120 9 MenbedDisplayer (MenbedDisplay *display);
GuiTwo 0:936f1c020120 10 void update (MenbedMenuMessage *menuMessage);
GuiTwo 0:936f1c020120 11 MenbedDisplay *getDisplay (void) {return display;}
GuiTwo 0:936f1c020120 12 protected:
GuiTwo 0:936f1c020120 13 MenbedDisplay *display;
GuiTwo 0:936f1c020120 14
GuiTwo 0:936f1c020120 15 void extractLine (char *catenatedText, uint8_t lineNum, char *extractedText);
GuiTwo 0:936f1c020120 16 };
GuiTwo 0:936f1c020120 17
GuiTwo 0:936f1c020120 18 #endif /* _MENBEDDISPLAYER_H_ */