add two native python epg views
[enigma2.git] / lib / driver / avswitch.h
1 #ifndef __avswitch_h
2 #define __avswitch_h
3
4 class eAVSwitch
5 {
6         static eAVSwitch *instance;
7 #ifdef SWIG
8         eAVSwitch();
9         ~eAVSwitch();
10 #endif
11 protected:      
12 public:
13 #ifndef SWIG
14         eAVSwitch();
15         ~eAVSwitch();
16 #endif
17         static eAVSwitch *getInstance();
18         
19         void setFastBlank(int val);
20         void setColorFormat(int format);
21         void setAspectRatio(int ratio);
22         void setVideomode(int mode);
23         void setInput(int val);
24
25 };
26
27 #endif