summaryrefslogtreecommitdiffstats
path: root/layman/overlays/source.py
diff options
context:
space:
mode:
Diffstat (limited to 'layman/overlays/source.py')
-rw-r--r--layman/overlays/source.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/layman/overlays/source.py b/layman/overlays/source.py
new file mode 100644
index 0000000..8ed9d31
--- /dev/null
+++ b/layman/overlays/source.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+#################################################################################
+# LAYMAN OVERLAY SOURCE BASE CLASS
+#################################################################################
+# File: source.py
+#
+# Base class for the different overlay types.
+#
+# Copyright:
+# (c) 2010 Sebastian Pipping
+# Distributed under the terms of the GNU General Public License v2
+#
+# Author(s):
+# Sebastian Pipping <sebastian@pipping.org>
+
+from layman.overlays.overlay import Overlay
+
+class OverlaySource(Overlay):
+ def __init__(self, xml, config, ignore = 0, quiet = False):
+ super(OverlaySource, self).__init__(xml, config, ignore, quiet)