9342e5e226c91fbe5f239769707d27a4ba6acab5
[vuplus_dvbapp] / lib / gdi / glcddc.h
1 #ifndef DISABLE_LCD
2
3 #ifndef __glcddc_h
4 #define __glcddc_h
5
6 #include "grc.h"
7
8 class eLCD;
9
10 class gLCDDC: public gPixmapDC
11 {
12         eLCD *lcd;
13         static gLCDDC *instance;
14         int update;
15         void exec(gOpcode *opcode);
16 public:
17         gLCDDC(eLCD *lcd);
18         ~gLCDDC();
19         void setUpdate(int update);
20         static gLCDDC *getInstance();
21 };
22
23
24 #endif
25
26 #endif //DISABLE_LCD