2008-11-29 05:36:16 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
2008-10-23 19:49:13 +00:00
|
|
|
"""
|
|
|
|
OpenLP - Open Source Lyrics Projection
|
|
|
|
Copyright (c) 2008 Raoul Snyman
|
2009-04-15 04:58:51 +00:00
|
|
|
Portions copyright (c) 2008-2009 Martin Thompson, Tim Bentley
|
2008-10-23 19:49:13 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; version 2 of the License.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
"""
|
2008-12-01 13:15:31 +00:00
|
|
|
from settingsmanager import SettingsManager
|
2009-04-20 18:22:42 +00:00
|
|
|
from openlp.core.lib.pluginmanager import PluginManager
|
2008-11-22 09:28:03 +00:00
|
|
|
|
2009-05-20 20:17:20 +00:00
|
|
|
__all__ = ['SettingsManager', 'PluginManager' ]
|
2009-02-28 23:19:45 +00:00
|
|
|
|