]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/runtime/CppComponent.cxx
Salome HOME
Modification of API of ComponentInstance::load to give information of which node...
[modules/yacs.git] / src / runtime / CppComponent.cxx
index 42e2878294981eab7e97780710269584241639f1..fb877df382bb811207b9ec5abc24b127a00f0a00 100644 (file)
@@ -146,19 +146,19 @@ void CppComponent::run (const char * service, int nbIn, int nbOut,
 }
 
 //! Unload the component 
-void CppComponent::unload()
+void CppComponent::unload(ServiceNode *askingNode)
 {
   //Not implemented
   DEBTRACE("CppComponent::unload : not implemented ");
 }
 
 //! Is the component instance already loaded ?
-bool CppComponent::isLoaded()
+bool CppComponent::isLoaded(ServiceNode *askingNode)
 {
   return NULL != __obj;
 }
  
-void CppComponent::load()
+void CppComponent::load(ServiceNode *askingNode)
 {
    if (!_container) {
      _container = getRuntime()->createContainer(CppNode::KIND);