To enable TextDisplays\' use as a lib I removed main.cpp

Dependents:   TextLCD_Serial

Committer:
giryan
Date:
Sun Sep 05 09:21:49 2010 +0000
Revision:
0:0e729fc7275a
Version of sford\s TextDisplays lib without main.cpp

Who changed what in which revision?

UserRevisionLine numberNew contents of line
giryan 0:0e729fc7275a 1 /* mbed Text Displays Collection Library
giryan 0:0e729fc7275a 2 * Copyright (c) 2007-2009 sford
giryan 0:0e729fc7275a 3 * Released under the MIT License: http://mbed.org/license/mit
giryan 0:0e729fc7275a 4 *
giryan 0:0e729fc7275a 5 * A library for providing a common base class for Text
giryan 0:0e729fc7275a 6 * displays, to provide commonality and simplify porting of new displays
giryan 0:0e729fc7275a 7 */
giryan 0:0e729fc7275a 8
giryan 0:0e729fc7275a 9 #ifndef MBED_TEXT_DISPLAYS_H
giryan 0:0e729fc7275a 10 #define MBED_TEXT_DISPLAYS_H
giryan 0:0e729fc7275a 11
giryan 0:0e729fc7275a 12 // Display Base Class
giryan 0:0e729fc7275a 13 #include "TextDisplay.h"
giryan 0:0e729fc7275a 14
giryan 0:0e729fc7275a 15 // Text Displays
giryan 0:0e729fc7275a 16 #include "TextLCD.h"
giryan 0:0e729fc7275a 17 #include "Terminal.h"
giryan 0:0e729fc7275a 18
giryan 0:0e729fc7275a 19
giryan 0:0e729fc7275a 20 #endif