]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/ProcessObject.hxx
...
[cpPlugins.git] / lib / cpPlugins / Interface / ProcessObject.hxx
index 7b4e080c5245aec6ab6aafc80c9d6ee43e4ab807..a4a417bde2fbe6f289fdf62e55491c4a1df0642e 100644 (file)
@@ -29,7 +29,9 @@ const T* cpPlugins::Interface::ProcessObject::
 _Input( unsigned int idx ) const
 {
   if( idx < this->m_Inputs.size( ) )
-    return( dynamic_cast< const T* >( this->m_Inputs[ idx ].GetPointer( ) ) );
+    return(
+      dynamic_cast< const T* >( this->m_Inputs[ idx ].GetPointer( ) )
+      );
   else
     return( NULL );
 }
@@ -51,7 +53,9 @@ const T* cpPlugins::Interface::ProcessObject::
 _Output( unsigned int idx ) const
 {
   if( idx < this->m_Outputs.size( ) )
-    return( dynamic_cast< const T* >( this->m_Outputs[ idx ].GetPointer( ) ) );
+    return(
+      dynamic_cast< const T* >( this->m_Outputs[ idx ].GetPointer( ) )
+      );
   else
     return( NULL );
 }