etherlab/extension.py
author Laurent Bessard
Fri, 29 Mar 2013 01:15:01 +0100
changeset 2111 f2cffda17d00
parent 2086 8e4992e0f147
permissions -rw-r--r--
Split etherlab.py into multiple files
import features

def GetEtherLabLibClass():
    from EthercatMaster import EtherlabLibrary
    return EtherlabLibrary

features.libraries.append(
    ('Etherlab', GetEtherLabLibClass))

def GetEtherLabClass():
    from etherlab import RootClass
    return RootClass

features.catalog.append(
    ('etherlab', _('EtherCat Master'), _('Map located variables over EtherCat'), GetEtherLabClass))