4 errors
Dependencies: KS0108_PCF8574 mbed
menbed/menbedMenuMessage.cpp@0:936f1c020120, 2012-09-05 (annotated)
- Committer:
- GuiTwo
- Date:
- Wed Sep 05 07:21:59 2012 +0000
- Revision:
- 0:936f1c020120
With KS0108;
Who changed what in which revision?
User | Revision | Line number | New 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 | } |