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 Blit.h Source File

Blit.h

00001 #ifndef BLIT_H
00002 #define BLIT_H
00003 #include "Command.h"
00004 #include "uLCD_4DGL.h"
00005 class Blit: public Command {
00006     private:
00007         int x;
00008         int y;
00009         int w;
00010         int h;
00011         int *colors;
00012     public:
00013         Blit(int x, int y, int w, int h, int *colors);
00014         virtual void execute(uLCD_4DGL* uLCD);
00015 };
00016 #endif