X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConnectorPlugin%2FConnectorPlugin.py;h=78c1c65eb9cfb4e59430d02bbf592fb038d23f6a;hb=f0c3b9832bcdd6bcfd57a6a81ff21dfb76bc0bb6;hp=b532bbd7c3179449fef0c4d576c8d002717411dd;hpb=1e331e45cee661c73461f09a8114aaba62c8d9b4;p=modules%2Fshaper.git diff --git a/src/ConnectorPlugin/ConnectorPlugin.py b/src/ConnectorPlugin/ConnectorPlugin.py index b532bbd7c..78c1c65eb 100644 --- a/src/ConnectorPlugin/ConnectorPlugin.py +++ b/src/ConnectorPlugin/ConnectorPlugin.py @@ -1,25 +1,48 @@ -""" -Copyright (C) 2014-20xx CEA/DEN, EDF R&D -""" +## Copyright (C) 2014-2017 CEA/DEN, EDF R&D +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library 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 +## Lesser General Public License for more details. +## +## You should have received a copy of the GNU Lesser General Public +## License along with this library; if not, write to the Free Software +## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +## +## See http:##www.salome-platform.org/ or +## email : webmaster.salome@opencascade.com +## + +## @package Plugins +# Python plugin for exporting entities into Salome's GEOM module import ModelAPI from ConnectorPlugin_ExportFeature import ExportFeature - +## @ingroup Plugins +# The main class for management the construction features as plugin. class ConnectorPlugin(ModelAPI.ModelAPI_Plugin): + ## The constructor. def __init__(self): ModelAPI.ModelAPI_Plugin.__init__(self) pass + ## Creates the feature objects of this plugin by the feature string ID. def createFeature(self, theFeatureID): if theFeatureID == ExportFeature.ID(): return ExportFeature().__disown__() else: - print "ConnectorPlugin: No such feature %s" % theFeatureID + print("ConnectorPlugin: No such feature %s" % theFeatureID) +## The plugin created on module importing (from c++) plugin = ConnectorPlugin() +## Main session of the application aSession = ModelAPI.ModelAPI_Session.get() -print "Module loaded. Session", aSession aSession.registerPlugin(plugin)