ITK  4.4.0
Insight Segmentation and Registration Toolkit
Classes | Namespaces | Macros
itkQuadEdgeMeshBaseIterator.h File Reference
#include "itkMacro.h"
+ Include dependency graph for itkQuadEdgeMeshBaseIterator.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  itk::QuadEdgeMeshBaseIterator< TQuadEdge >
 
class  itk::QuadEdgeMeshConstIterator< TQuadEdge >
 
class  itk::QuadEdgeMeshConstIteratorGeom< TGeometricalQuadEdge >
 
class  itk::QuadEdgeMeshIterator< TQuadEdge >
 
class  itk::QuadEdgeMeshIteratorGeom< TGeometricalQuadEdge >
 

Namespaces

namespace  itk
 

Macros

#define itkQEDefineIteratorGeomMethodsMacro(Op)
 
#define itkQEDefineIteratorMethodsMacro(Op)
 

Macro Definition Documentation

#define itkQEDefineIteratorGeomMethodsMacro (   Op)
Value:
virtual IteratorGeom BeginGeom##Op() \
{ \
return IteratorGeom(this, Self::IteratorGeom::Operator##Op, \
true); \
} \
\
virtual ConstIteratorGeom BeginGeom##Op() const \
{ \
return ConstIteratorGeom(this, \
Self::ConstIteratorGeom::Operator##Op, true); \
} \
\
virtual IteratorGeom EndGeom##Op() \
{ \
return IteratorGeom(this, Self::IteratorGeom::Operator##Op, \
false); \
} \
\
virtual ConstIteratorGeom EndGeom##Op() const \
{ \
return ConstIteratorGeom(this, \
Self::ConstIteratorGeom::Operator##Op, false); \
}

Definition at line 48 of file itkQuadEdgeMeshBaseIterator.h.

#define itkQEDefineIteratorMethodsMacro (   Op)
Value:
virtual Iterator Begin##Op() \
{ \
return Iterator(this, Self::Iterator::Operator##Op, true); \
} \
\
virtual ConstIterator Begin##Op() const \
{ \
return ConstIterator(this, Self::ConstIterator::Operator##Op, \
true); \
} \
\
virtual Iterator End##Op() \
{ \
return Iterator(this, Self::Iterator::Operator##Op, false); \
} \
\
virtual ConstIterator End##Op() const \
{ \
return ConstIterator(this, Self::ConstIterator::Operator##Op, \
false); \
}

Definition at line 24 of file itkQuadEdgeMeshBaseIterator.h.