add new skin stuff
[enigma2.git] / lib / python / Components / Sources / Source.py
diff --git a/lib/python/Components/Sources/Source.py b/lib/python/Components/Sources/Source.py
new file mode 100644 (file)
index 0000000..77fcb55
--- /dev/null
@@ -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()