X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FBaseObjects%2FProcessObject.h;h=5dbf8b315ea6fd8a510eb011248a9224037115e8;hb=ff82c0202d0496bb65bc4cb07e63604616db2961;hp=60ee6512baddee480695a53339accd3d874b1b4b;hpb=917cf2bc870d548e03ce90f2f97baa5e78d44c33;p=cpPlugins.git diff --git a/lib/cpPlugins/BaseObjects/ProcessObject.h b/lib/cpPlugins/BaseObjects/ProcessObject.h index 60ee651..5dbf8b3 100644 --- a/lib/cpPlugins/BaseObjects/ProcessObject.h +++ b/lib/cpPlugins/BaseObjects/ProcessObject.h @@ -31,21 +31,23 @@ namespace cpPlugins cpPlugins_Id_Macro( ProcessObject, Object ); itkBooleanMacro( ExplicitExecution ); - itkBooleanMacro( PrintExecution ); itkGetStringMacro( Name ); itkGetStringMacro( PluginName ); itkGetConstMacro( ExplicitExecution, bool ); itkGetConstMacro( LastExecutionSpan, long ); - itkGetConstMacro( PrintExecution, bool ); itkSetStringMacro( Name ); itkSetStringMacro( PluginName ); itkSetMacro( ExplicitExecution, bool ); - itkSetMacro( PrintExecution, bool ); - itkSetObjectMacro( PrintExecutionStream, std::ofstream ); public: + void PrintExecutionOn( ); + void PrintExecutionOff( ); + bool GetPrintExecution( ) const; + bool SetPrintExecution( bool v ); + void SetPrintExecutionStream( std::ofstream* s ); + Parameters* GetParameters( ); const Parameters* GetParameters( ) const;