dont set /proc/stb values directly from python..
[enigma2.git] / lib / driver / avswitch.h
index 157948826fe5d4af8c24a9ac78e5a3c8b3657d38..9c26b1ad131f309d0b62fe72d0be6259d1f5dd0b 100644 (file)
@@ -4,17 +4,25 @@
 class eAVSwitch
 {
        static eAVSwitch *instance;
-       
+#ifdef SWIG
+       eAVSwitch();
+       ~eAVSwitch();
+#endif
 protected:     
 public:
+#ifndef SWIG
        eAVSwitch();
        ~eAVSwitch();
-
+#endif
        static eAVSwitch *getInstance();
-
+       
+       void setFastBlank(int val);
        void setColorFormat(int format);
        void setAspectRatio(int ratio);
        void setVideomode(int mode);
+       void setInput(int val);
+       void setSlowblank(int val);
+       void setWSS(int val);
 };
 
 #endif