]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/ProcessObject.hxx
MAC compilation issues solved... Now some tests please
[cpPlugins.git] / lib / cpPlugins / Interface / ProcessObject.hxx
1 #ifndef __CPPLUGINS__INTERFACE__PROCESSOBJECT__HXX__
2 #define __CPPLUGINS__INTERFACE__PROCESSOBJECT__HXX__
3
4 // -------------------------------------------------------------------------
5 template< class T >
6 T* cpPlugins::Interface::ProcessObject::
7 GetInputData( const std::string& id )
8 {
9   auto i = this->m_Inputs.find( id );
10   if( i != this->m_Inputs.end( ) )
11     return( dynamic_cast< T* >( i->second.GetPointer( ) ) );
12   else
13     return( NULL );
14 }
15
16 // -------------------------------------------------------------------------
17 template< class T >
18 const T* cpPlugins::Interface::ProcessObject::
19 GetInputData( const std::string& id ) const
20 {
21   auto i = this->m_Inputs.find( id );
22   if( i != this->m_Inputs.end( ) )
23     return( dynamic_cast< const T* >( i->second.GetPointer( ) ) );
24   else
25     return( NULL );
26 }
27
28 // -------------------------------------------------------------------------
29 template< class T >
30 T* cpPlugins::Interface::ProcessObject::
31 GetOutputData( const std::string& id )
32 {
33   auto i = this->m_Outputs.find( id );
34   if( i != this->m_Outputs.end( ) )
35     return( dynamic_cast< T* >( i->second.GetPointer( ) ) );
36   else
37     return( NULL );
38 }
39
40 // -------------------------------------------------------------------------
41 template< class T >
42 const T* cpPlugins::Interface::ProcessObject::
43 GetOutputData( const std::string& id ) const
44 {
45   auto i = this->m_Outputs.find( id );
46   if( i != this->m_Outputs.end( ) )
47     return( dynamic_cast< const T* >( i->second.GetPointer( ) ) );
48   else
49     return( NULL );
50 }
51
52 // -------------------------------------------------------------------------
53 template< class O >
54 void cpPlugins::Interface::ProcessObject::
55 _AddOutput( const std::string& name )
56 {
57   auto i = this->m_Outputs.find( name );
58   if( i == this->m_Outputs.end( ) )
59   {
60     typename O::Pointer o = O::New( );
61     o->SetSource( this );
62     this->m_Outputs[ name ] = o;
63     this->Modified( );
64
65   } // fi
66 }
67
68 // -------------------------------------------------------------------------
69 template< class F >
70 F* cpPlugins::Interface::ProcessObject::
71 _CreateITK( )
72 {
73   F* filter = this->GetITK< F >( );
74   if( filter == NULL )
75   {
76     typename F::Pointer filter_ptr = F::New( );
77     this->m_ITKObject = filter_ptr;
78     this->m_VTKObject = NULL;
79     filter = filter_ptr.GetPointer( );
80     this->Modified( );
81
82   } // fi
83   return( filter );
84 }
85
86 // -------------------------------------------------------------------------
87 template< class F >
88 F* cpPlugins::Interface::ProcessObject::
89 _CreateVTK( )
90 {
91   F* filter = this->GetVTK< F >( );
92   if( filter == NULL )
93   {
94     vtkSmartPointer< F > filter_ptr = vtkSmartPointer< F >::New( );
95     this->m_ITKObject = NULL;
96     this->m_VTKObject = filter_ptr;
97     filter = filter_ptr.GetPointer( );
98     this->Modified( );
99
100   } // fi
101   return( filter );
102 }
103
104 #endif // __CPPLUGINS__INTERFACE__PROCESSOBJECT__HXX__
105
106 // eof - $RCSfile$