self.
[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 protected:      
9 public:
10         eAVSwitch();
11         ~eAVSwitch();
12
13         static eAVSwitch *getInstance();
14
15         void setColorFormat(int format);
16         void setAspectRatio(int ratio);
17         void setVideomode(int mode);
18 };
19
20 #endif