aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources/Source.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-06-15 17:34:06 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-06-15 17:34:06 +0000
commit2e874fa14264bf37f17ae9b9375e26059e7f35ec (patch)
treeceb5244659b57714fb4609914f3146630f045c4a /lib/python/Components/Sources/Source.py
parente131b75fd194db84a37f2395b5ab88093e09192f (diff)
downloadenigma2-2e874fa14264bf37f17ae9b9375e26059e7f35ec.tar.gz
enigma2-2e874fa14264bf37f17ae9b9375e26059e7f35ec.zip
add new skin stuff
Diffstat (limited to 'lib/python/Components/Sources/Source.py')
-rw-r--r--lib/python/Components/Sources/Source.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/python/Components/Sources/Source.py b/lib/python/Components/Sources/Source.py
new file mode 100644
index 00000000..77fcb55f
--- /dev/null
+++ b/lib/python/Components/Sources/Source.py
@@ -0,0 +1,16 @@
+class Source(object):
+
+ def execBegin(self):
+ pass
+
+ def execEnd(self):
+ pass
+
+ def onShow(self):
+ pass
+
+ def onHide(self):
+ pass
+
+ def destroy(self):
+ self.__dict__.clear()