Michael Kuchnik / Mbed 2 deprecated uLCD_Multiscreen

Dependencies:   4DGL-uLCD-SE mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Command.h Source File

Command.h

00001 #ifndef COMMAND_H
00002 #define COMMAND_H
00003 #include "uLCD_4DGL.h"
00004 /**
00005  * Class represents a uLCD command. 
00006  */
00007 class Command {
00008         public:
00009         /**
00010          * Executes the command on the target uLCD.
00011          * @param uLCD the lcd to execute the command on.
00012          */
00013         virtual void execute(uLCD_4DGL* uLCD) = 0;
00014 };
00015 #endif