added setContrast, setBrightness and removed SetParam(bright, contrast)
[enigma2.git] / lib / driver / avswitch.h
1 #ifndef __avswitch_h
2 #define __avswitch_h
3
4 class eAVSwitch
5 {
6         static eAVSwitch *instance;
7         
8         int avsfd;
9 protected:      
10 public:
11         eAVSwitch();
12         ~eAVSwitch();
13
14         static eAVSwitch *getInstance();
15
16         void setColorFormat(int format);
17 };
18
19 #endif