From 8ff0700f156139bd6cdf08ca0c01d9ffe7859acd Mon Sep 17 00:00:00 2001 From: rahuel Date: Wed, 8 Dec 2004 12:15:45 +0000 Subject: [PATCH] Not implemented methods Kill, Suspend and Resume return zero. --- src/Container/SALOME_ComponentPy.py | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/src/Container/SALOME_ComponentPy.py b/src/Container/SALOME_ComponentPy.py index 10a47c978..0c1250f61 100755 --- a/src/Container/SALOME_ComponentPy.py +++ b/src/Container/SALOME_ComponentPy.py @@ -67,6 +67,7 @@ class SALOME_ComponentPy_i (Engines__POA.Component): self._notif = notif self._myConnexionToRegistry = 0 self._graphName = '' + self._serviceName = '' self._nodeName = '' self._ThreadId = 0 self._StartUsed = 0 @@ -185,23 +186,27 @@ class SALOME_ComponentPy_i (Engines__POA.Component): #------------------------------------------------------------------------- - def Kill(self): - MESSAGE( "SALOME_ComponentPy_i::Kill not yet implemented" ) + def Kill_impl(self): + MESSAGE( "SALOME_ComponentPy_i::Kill_impl not implemented" ) + return 0 #------------------------------------------------------------------------- - def Stop(self): - MESSAGE( "SALOME_ComponentPy_i::Stop not yet implemented" ) + def Stop_impl(self): + MESSAGE( "SALOME_ComponentPy_i::Stop_impl not implemented" ) + return 0 #------------------------------------------------------------------------- - def Suspend(self): - MESSAGE( "SALOME_ComponentPy_i::Suspend not yet implemented" ) + def Suspend_impl(self): + MESSAGE( "SALOME_ComponentPy_i::Suspend_impl not implemented" ) + return 0 #------------------------------------------------------------------------- - def Resume(self): - MESSAGE( "SALOME_ComponentPy_i::Resume not yet implemented" ) + def Resume_impl(self): + MESSAGE( "SALOME_ComponentPy_i::Resume_impl not implemented" ) + return 0 #------------------------------------------------------------------------- -- 2.39.2