ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkQuadEdgeMeshSubdivisionCriterion.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 
19 #ifndef itkQuadEdgeMeshSubdivisionCriterion_h
20 #define itkQuadEdgeMeshSubdivisionCriterion_h
21 
22 #include "itkObject.h"
23 
24 namespace itk
25 {
31 template< typename TCellSubdivisionFilter >
32 class ITK_EXPORT QuadEdgeMeshSubdivisionCriterion : public Object
33 {
34 public:
36  typedef Object Superclass;
39 
40  typedef typename TCellSubdivisionFilter::InputMeshType MeshType;
41  typedef typename MeshType::Pointer MeshPointer;
42  typedef typename MeshType::ConstPointer MeshConstPointer;
43  typedef typename MeshType::PointsContainerPointer PointsContainerPointer;
44  typedef typename MeshType::PointsContainerConstIterator PointsContainerConstIterator;
45  typedef typename MeshType::PointsContainerIterator PointsContainerIterator;
46  typedef typename MeshType::CellsContainer CellsContainer;
47  typedef typename MeshType::CellsContainerPointer CellsContainerPointer;
48  typedef typename MeshType::CellsContainerIterator CellsContainerIterator;
49  typedef typename MeshType::CellsContainerConstIterator CellsContainerConstIterator;
50  typedef typename MeshType::PointType PointType;
51  typedef typename MeshType::CoordRepType CoordRepType;
52  typedef typename MeshType::PointIdentifier PointIdentifier;
53  typedef typename MeshType::CellIdentifier CellIdentifier;
54  typedef typename MeshType::CellType CellType;
55  typedef typename MeshType::QEType QEType;
56  typedef typename MeshType::PointIdIterator PointIdIterator;
57  typedef typename TCellSubdivisionFilter::SubdivisionCellContainer SubdivisionCellContainer;
58 
61 
62  virtual void Compute( MeshType * mesh, SubdivisionCellContainer & edgeList ) = 0;
63 
64 protected:
67 };
68 
69 }
70 #endif
TCellSubdivisionFilter::InputMeshType MeshType
MeshType::PointsContainerConstIterator PointsContainerConstIterator
MeshType::PointsContainerIterator PointsContainerIterator
Base class for most ITK classes.
Definition: itkObject.h:57
MeshType::CellsContainerConstIterator CellsContainerConstIterator
TCellSubdivisionFilter::SubdivisionCellContainer SubdivisionCellContainer