00001
00002
00003
00004 __copyright__ = """
00005 Copyright 2008 Sean Ross-Ross
00006 """
00007 __license__ = """
00008 This file is part of SLIMpy .
00009
00010 SLIMpy is free software: you can redistribute it and/or modify
00011 it under the terms of the GNU Lesser General Public License as published by
00012 the Free Software Foundation, either version 3 of the License, or
00013 (at your option) any later version.
00014
00015 SLIMpy is distributed in the hope that it will be useful,
00016 but WITHOUT ANY WARRANTY; without even the implied warranty of
00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00018 GNU Lesser General Public License for more details.
00019
00020 You should have received a copy of the GNU Lesser General Public License
00021 along with SLIMpy . If not, see <http://www.gnu.org/licenses/>.
00022 """
00023
00024 from slimpy_base.utils.AbstractLoader import loader
00025 from slimpy_base.api.functions import slimpy_function_register
00026 import functions
00027 import spboolean
00028
00029 class fLoader(loader):
00030 """
00031 Loads functions into a namespace
00032 """
00033 def __init__(self):
00034 self.g = slimpy_function_register.functions
00035
00036
00037
00038
00039