]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/Mesh.hxx
...
[cpPlugins.git] / lib / cpPlugins / Interface / Mesh.hxx
1 #ifndef __CPPLUGINS__INTERFACE__MESH__HXX__
2 #define __CPPLUGINS__INTERFACE__MESH__HXX__
3
4 // -------------------------------------------------------------------------
5 template< class M >
6 void cpPlugins::Interface::Mesh::
7 SetITKMesh( itk::DataObject* object )
8 {
9   std::cerr << "SetITKMesh: TODO" << std::endl;
10   std::exit( 1 );
11 }
12
13 // -------------------------------------------------------------------------
14 template< class M >
15 M* cpPlugins::Interface::Mesh::
16 GetITKMesh( )
17 {
18   std::cerr << "GetITKMesh: TODO" << std::endl;
19   std::exit( 1 );
20   return( NULL );
21 }
22
23 // -------------------------------------------------------------------------
24 template< class M >
25 const M* cpPlugins::Interface::Mesh::
26 GetITKMesh( ) const
27 {
28   std::cerr << "GetITKMesh (const): TODO" << std::endl;
29   std::exit( 1 );
30   return( NULL );
31 }
32
33 #endif // __CPPLUGINS__INTERFACE__MESH__HXX__
34
35 // eof - $RCSfile$