aboutsummaryrefslogtreecommitdiff
blob: 8ed9d319c2acebf52715f39f9b5193e86e290377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)