]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/Instances_itkMesh.cxx
Parameters are now part of the pipeline update process
[cpPlugins.git] / lib / cpPlugins / Interface / Instances_itkMesh.cxx
1 #include <cpPlugins/Interface/Macros.h>
2
3 #undef ITK_MANUAL_INSTANTIATION
4 #include <itkMesh.h>
5 #include <itkQuadEdgeMesh.h>
6
7 // -------------------------------------------------------------------------
8 #define cpPlugins_Mesh_Export( N, T, D )                                \
9   cpPlugins_TEMPLATE_EXPORT(                                            \
10     2(class cpPlugins_Interface_EXPORT itk::N< T, D >)                  \
11     )
12
13 // -------------------------------------------------------------------------
14 cpPlugins_Mesh_Export( Mesh, float, 2 );
15 cpPlugins_Mesh_Export( Mesh, double, 2 );
16 cpPlugins_Mesh_Export( Mesh, float, 3 );
17 cpPlugins_Mesh_Export( Mesh, double, 3 );
18 cpPlugins_Mesh_Export( QuadEdgeMesh, float, 2 );
19 cpPlugins_Mesh_Export( QuadEdgeMesh, double, 2 );
20 cpPlugins_Mesh_Export( QuadEdgeMesh, float, 3 );
21 cpPlugins_Mesh_Export( QuadEdgeMesh, double, 3 );
22
23 // eof - $RCSfile$