- fixed dvb scan
[enigma2.git] / lib / gdi / glcddc.h
1 #ifndef DISABLE_LCD
2
3 #ifndef __glcddc_h
4 #define __glcddc_h
5
6 #include "grc.h"
7 #include <lib/gdi/lcd.h>
8
9 class gLCDDC: public gDC
10 {
11         eLCD *lcd;
12         static gLCDDC *instance;
13         int update;
14         void exec(gOpcode *opcode);
15         gSurface surface;
16 public:
17         gLCDDC(eLCD *lcd);
18         ~gLCDDC();
19         void setUpdate(int update);
20         static gLCDDC *getInstance();
21         int islocked() { return lcd->islocked(); }
22 };
23
24
25 #endif
26
27 #endif //DISABLE_LCD