git.cweiske.de
/
enigma2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add playlists
[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
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