// 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;
}
// name : execStatus
// Purpose : Gets execution status
//=======================================================================
-int SUIT_Operation::execStatus()
+int SUIT_Operation::execStatus() const
{
return myExecStatus;
}
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 */
void setExecStatus( const int );
//!< Sets myExecStatus to the given value
- int execStatus();
+ int execStatus() const;
//!< Gets execution status
void start( SUIT_Operation* );