]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
Any penny of it agy/ssl_padder
authorAnthony Geay <anthony.geay@edf.fr>
Mon, 20 Dec 2021 17:20:18 +0000 (18:20 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Mon, 20 Dec 2021 17:20:18 +0000 (18:20 +0100)
src/Tools/padder/meshjob/impl/MeshJobManager_i.cxx
src/Tools/padder/meshjob/impl/MeshJobManager_i.hxx
src/Tools/padder/meshjob/impl/SMeshPadderHelper.cxx

index acc8e4484a691590d7317e3a0cb87e30d6b650d8..10bae23e7129a6941484207fdad401f53505360b 100644 (file)
@@ -97,8 +97,9 @@ MeshJobManager_i::MeshJobManager_i(CORBA::ORB_ptr orb,
                                    PortableServer::POA_ptr poa,
                                    PortableServer::ObjectId * contId,
                                    const char *instanceName,
-                                   const char *interfaceName)
-  : Engines_Component_i(orb, poa, contId, instanceName, interfaceName)
+                                   const char *interfaceName,
+                                   bool checkNS, bool regist)
+  : Engines_Component_i(orb, poa, contId, instanceName, interfaceName, checkNS, regist)
 {
   LOG("Activating MESHJOB::MeshJobManager object");
   _thisObj = this ;
index fd14e12b416123266e277946fd8e48ffa6173085..9c9968f10551ec9fe8022564767a642ed0cda84a 100644 (file)
@@ -51,7 +51,7 @@ class MESHJOBMANAGERENGINE_EXPORT MeshJobManager_i: public virtual POA_MESHJOB::
 public:
   MeshJobManager_i(CORBA::ORB_ptr orb, PortableServer::POA_ptr poa,
                    PortableServer::ObjectId * contId,
-                   const char *instanceName, const char *interfaceName);
+                   const char *instanceName, const char *interfaceName, bool checkNS = true, bool regist = true);
   ~MeshJobManager_i();
 
   bool           configure  (const char *configId,
index 342c61816bd9ce186344fa9870ca436a722955e1..cc51e5ad2fdcdba04be23248c64fe07b6acc4304 100644 (file)
@@ -46,7 +46,7 @@ Engines::EngineComponent_var BuildPadderMeshJobManagerInstance()
     //
     pman->activate();
     //
-    MeshJobManager_i *servant = new MeshJobManager_i(orb, poa, conId, "SMESH_inst_2", "SMESH");
+    MeshJobManager_i *servant = new MeshJobManager_i(orb, poa, conId, "MeshJobManager_inst_3", "MeshJobManager", false, false);
     PortableServer::ObjectId *zeId = servant->getId();
     CORBA::Object_var zeRef = poa->id_to_reference(*zeId);
     _unique_compo = Engines::EngineComponent::_narrow(zeRef);