aboutsummaryrefslogtreecommitdiff
path: root/lib/driver/avswitch.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-31 00:23:01 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-31 00:23:01 +0000
commit85f2616ef78700cf2639992abaf1011ecaa897bd (patch)
tree86b10403cdb942ec5a4a168a7012fe3ac859a703 /lib/driver/avswitch.h
parent39862e4439df37f150796d3d99352b8859de0736 (diff)
downloadenigma2-85f2616ef78700cf2639992abaf1011ecaa897bd.tar.gz
enigma2-85f2616ef78700cf2639992abaf1011ecaa897bd.zip
make many constructors and destructors invisible for python
Diffstat (limited to 'lib/driver/avswitch.h')
-rw-r--r--lib/driver/avswitch.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/driver/avswitch.h b/lib/driver/avswitch.h
index 9f6eccb7..d765e02a 100644
--- a/lib/driver/avswitch.h
+++ b/lib/driver/avswitch.h
@@ -4,12 +4,16 @@
class eAVSwitch
{
static eAVSwitch *instance;
-
+#ifdef SWIG
+ eAVSwitch();
+ ~eAVSwitch();
+#endif
protected:
public:
+#ifndef SWIG
eAVSwitch();
~eAVSwitch();
-
+#endif
static eAVSwitch *getInstance();
void setFastBlank(int val);