Dependencies:   mbed

Revision:
0:cc002f2fad97
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Displays.h	Tue Sep 15 10:02:04 2009 +0000
@@ -0,0 +1,24 @@
+/* mbed Display Library
+ * Copyright (c) 2007-2009 sford
+ * Released under the MIT License: http://mbed.org/license/mit
+ *
+ * A library for providing a common base class for Text and Graphics
+ * displays, to provide commonality and simplify porting of new displays 
+ */
+
+#ifndef MBED_DISPLAYS_H
+#define MBED_DISPLAYS_H
+
+// Display Base Classes
+#include "TextDisplay.h"
+#include "GraphicsDisplay.h"
+
+// Text Displays
+#include "TextLCD.h"
+#include "Terminal.h"
+
+// Graphics Displays
+#include "MobileLCD.h"
+#include "EA_QVGALCD.h"
+
+#endif