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 #ifndef _MENBEDDISPLAY_H_
GuiTwo 0:936f1c020120 2 #define _MENBEDDISPLAY_H_
GuiTwo 0:936f1c020120 3
GuiTwo 0:936f1c020120 4 #include "mbed.h"
GuiTwo 0:936f1c020120 5
GuiTwo 0:936f1c020120 6 class MenbedDisplay {
GuiTwo 0:936f1c020120 7 public:
GuiTwo 0:936f1c020120 8 virtual bool writeLine (const char *line, uint8_t row) = 0;
GuiTwo 0:936f1c020120 9 virtual void showUpArrow (bool show) = 0;
GuiTwo 0:936f1c020120 10 virtual void showDownArrow (bool show) = 0;
GuiTwo 0:936f1c020120 11 virtual uint8_t getLines (void) = 0;
GuiTwo 0:936f1c020120 12 virtual uint8_t getLineLength (void) = 0;
GuiTwo 0:936f1c020120 13 };
GuiTwo 0:936f1c020120 14
GuiTwo 0:936f1c020120 15 #endif /* _MENBEDDISPLAY_H_ */