fix empty expressions in dvb list search
[enigma2.git] / lib / driver / avswitch.h
1 #ifndef __avswitch_h
2 #define __avswitch_h
3
4 class eAVSwitch
5 {
6         static eAVSwitch *instance;
7         int m_video_mode;
8 #ifdef SWIG
9         eAVSwitch();
10         ~eAVSwitch();
11 #endif
12 protected:
13 public:
14 #ifndef SWIG
15         eAVSwitch();
16         ~eAVSwitch();
17 #endif
18         static eAVSwitch *getInstance();
19         
20         void setFastBlank(int val);
21         void setColorFormat(int format);
22         void setAspectRatio(int ratio);
23         void setVideomode(int mode);
24         void setInput(int val);
25         void setSlowblank(int val);
26         void setWSS(int val);
27 };
28
29 #endif