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/menbedMenuMessage.h"
GuiTwo 0:936f1c020120 3
GuiTwo 0:936f1c020120 4 MenbedMenuMessage::MenbedMenuMessage (uint8_t numLines, uint8_t lineLength)
GuiTwo 0:936f1c020120 5 {
GuiTwo 0:936f1c020120 6 text = new char[numLines * lineLength + 1];
GuiTwo 0:936f1c020120 7 }
GuiTwo 0:936f1c020120 8
GuiTwo 0:936f1c020120 9 MenbedMenuMessage::~MenbedMenuMessage()
GuiTwo 0:936f1c020120 10 {
GuiTwo 0:936f1c020120 11 delete[] text;
GuiTwo 0:936f1c020120 12 }