d8417692849a2b6e4f2e882d9f14d6a73a5f751c
[vuplus_dvbapp] / 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