]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
isReadyToStart method is constant now
authorsln <sln@opencascade.com>
Fri, 8 Jul 2005 08:48:15 +0000 (08:48 +0000)
committersln <sln@opencascade.com>
Fri, 8 Jul 2005 08:48:15 +0000 (08:48 +0000)
src/SUIT/SUIT_Operation.cxx
src/SUIT/SUIT_Operation.h

index 65c8c27072d4538e70f9fac13cf41c97787c3df4..0929794b7cf925d2fb05f4bf1e1d22b3a52a448d 100755 (executable)
@@ -185,7 +185,7 @@ void SUIT_Operation::suspend()
 // Purpose : Verify whether operator is ready to start. Default implementation
 //           returns true. Redefine this method to add own verifications 
 //=======================================================================
-bool SUIT_Operation::isReadyToStart()
+bool SUIT_Operation::isReadyToStart() const
 {
   return true;
 }
@@ -310,7 +310,7 @@ void SUIT_Operation::setExecStatus( const int theVal )
 // name    : execStatus
 // Purpose : Gets execution status
 //=======================================================================
-int SUIT_Operation::execStatus()
+int SUIT_Operation::execStatus() const
 {
   return myExecStatus;
 }
index 2c729e07ad06b11915ee6ecc4a62ace4f7a19bde..4bebbc9286e8e2273227355dca1c9489bd4081e2 100755 (executable)
@@ -151,7 +151,7 @@ signals:
 
 protected:
 
-  virtual bool      isReadyToStart();
+  virtual bool      isReadyToStart() const;
   //!< Verify whether operator is ready to start.
   /*!< Default implementation returns true. Redefine this method to add own verifications */
   
@@ -168,7 +168,7 @@ protected:
   
   void              setExecStatus( const int );
   //!< Sets myExecStatus to the given value
-  int               execStatus();
+  int               execStatus() const;
   //!< Gets execution status
 
   void              start( SUIT_Operation* );