aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources/Source.py
diff options
context:
space:
mode:
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()