aboutsummaryrefslogtreecommitdiff
path: root/lib/gdi/glcddc.h
blob: 9342e5e226c91fbe5f239769707d27a4ba6acab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef DISABLE_LCD

#ifndef __glcddc_h
#define __glcddc_h

#include "grc.h"

class eLCD;

class gLCDDC: public gPixmapDC
{
	eLCD *lcd;
	static gLCDDC *instance;
	int update;
	void exec(gOpcode *opcode);
public:
	gLCDDC(eLCD *lcd);
	~gLCDDC();
	void setUpdate(int update);
	static gLCDDC *getInstance();
};


#endif

#endif //DISABLE_LCD