add ability to select in scan what is todo with existing services (Clear before scan)
[enigma2.git] / lib / driver / avswitch.h
index 9f6eccb7fd9569d65362456122cf3ad138699fc2..d0221d50b0138b9c5fb9540429da6069cb892f79 100644 (file)
@@ -4,12 +4,17 @@
 class eAVSwitch
 {
        static eAVSwitch *instance;
-       
-protected:     
+       int m_video_mode;
+#ifdef SWIG
+       eAVSwitch();
+       ~eAVSwitch();
+#endif
+protected:
 public:
+#ifndef SWIG
        eAVSwitch();
        ~eAVSwitch();
-
+#endif
        static eAVSwitch *getInstance();
        
        void setFastBlank(int val);
@@ -17,7 +22,8 @@ public:
        void setAspectRatio(int ratio);
        void setVideomode(int mode);
        void setInput(int val);
-
+       void setSlowblank(int val);
+       void setWSS(int val);
 };
 
 #endif