]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/Image.cxx
...
[cpPlugins.git] / lib / cpPlugins / Interface / Image.cxx
1 #include <cpPlugins/Interface/Image.h>
2
3 // -------------------------------------------------------------------------
4 void cpPlugins::Interface::Image::
5 SetITK( itk::LightObject* o )
6 {
7   this->Superclass::SetITK( o );
8   this->_ITK_2_VTK_0< 2 >( o );
9   this->_ITK_2_VTK_0< 3 >( o );
10 }
11
12 // -------------------------------------------------------------------------
13 void cpPlugins::Interface::Image::
14 SetVTK( vtkObjectBase* o )
15 {
16   this->Superclass::SetVTK( o );
17   std::cerr << "Image: TODO this!!!!" << std::endl;
18   std::exit( 1 );
19 }
20
21 // -------------------------------------------------------------------------
22 cpPlugins::Interface::Image::
23 Image( )
24   : Superclass( )
25 {
26 }
27
28 // -------------------------------------------------------------------------
29 cpPlugins::Interface::Image::
30 ~Image( )
31 {
32 }
33
34 // eof - $RCSfile$