# HG changeset patch # User Laurent Bessard # Date 1339929472 -7200 # Node ID 8917feb27b92b8476a6202b41fdf51a93284c6ab # Parent 6aca5bc9c9a1616130a192c6507885ded3230357# Parent 73dcd03f53bb280879c24bb4a8106ba50d00676c merge diff -r 6aca5bc9c9a1 -r 8917feb27b92 LPCManager.py --- a/LPCManager.py Sun Jun 17 12:34:22 2012 +0200 +++ b/LPCManager.py Sun Jun 17 12:37:52 2012 +0200 @@ -62,6 +62,15 @@ sys.path.append(os.path.join(_base_folder, "beremiz")) _base_path = os.path.split(__file__)[0] +import features +from POULibrary import POULibrary + +class PLCLibrary(POULibrary): + def GetLibraryPath(self): + return os.path.join(_base_path, "pous.xml") + +features.libraries=[('LPC', lambda: PLCLibrary)] + import connectors from LPCconnector import LPC_connector_factory @@ -79,17 +88,6 @@ misc.opjimg = lambda imgname: os.path.join(_base_folder, "beremiz", "images", imgname+".png") from Beremiz import * - -import features -from POULibrary import POULibrary - -class PLCLibrary(POULibrary): - def GetLibraryPath(self): - return os.path.join(_base_path, "pous.xml") - -features.libraries.append( - ('LPC', lambda: PLCLibrary)) - from ProjectController import ProjectController from ConfigTreeNode import ConfigTreeNode from ProjectNodeEditor import ProjectNodeEditor