ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkCellInterfaceVisitor.h>
Public Types | |
typedef TCellTraits::CellIdentifier | CellIdentifier |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef CellInterfaceVisitor | Self |
typedef LightObject | Superclass |
Public Member Functions | |
virtual int | GetCellTopologyId ()=0 |
virtual const char * | GetNameOfClass () const |
virtual void | VisitFromCell (CellIdentifier cellId, CellInterface< TPixelType, TCellTraits > *)=0 |
Protected Member Functions | |
CellInterfaceVisitor () | |
~CellInterfaceVisitor () | |
Private Member Functions | |
CellInterfaceVisitor (const Self &) | |
void | operator= (const Self &) |
Abstract interface for a visitor class that can visit the cells in a Mesh.
Define the abstract interface for a visitor class that can visit the cells in a Mesh. This follows the Visitor Design Pattern. To make this class easier to use, the CellInterfaceVisitorImplementation is provided as a templated class to implement the pure virtual functions of CellInterfaceVisitor.
Definition at line 50 of file itkCellInterfaceVisitor.h.
typedef TCellTraits::CellIdentifier itk::CellInterfaceVisitor< TPixelType, TCellTraits >::CellIdentifier |
Reimplemented in itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >.
Definition at line 58 of file itkCellInterfaceVisitor.h.
typedef SmartPointer< const Self > itk::CellInterfaceVisitor< TPixelType, TCellTraits >::ConstPointer |
Reimplemented from itk::LightObject.
Definition at line 57 of file itkCellInterfaceVisitor.h.
typedef SmartPointer< Self > itk::CellInterfaceVisitor< TPixelType, TCellTraits >::Pointer |
Reimplemented from itk::LightObject.
Reimplemented in itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >.
Definition at line 56 of file itkCellInterfaceVisitor.h.
typedef CellInterfaceVisitor itk::CellInterfaceVisitor< TPixelType, TCellTraits >::Self |
Standard class typedefs.
Reimplemented from itk::LightObject.
Reimplemented in itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >.
Definition at line 54 of file itkCellInterfaceVisitor.h.
typedef LightObject itk::CellInterfaceVisitor< TPixelType, TCellTraits >::Superclass |
Definition at line 55 of file itkCellInterfaceVisitor.h.
itk::CellInterfaceVisitor< TPixelType, TCellTraits >::CellInterfaceVisitor | ( | ) | [inline, protected] |
Definition at line 71 of file itkCellInterfaceVisitor.h.
itk::CellInterfaceVisitor< TPixelType, TCellTraits >::~CellInterfaceVisitor | ( | ) | [inline, protected] |
Definition at line 72 of file itkCellInterfaceVisitor.h.
itk::CellInterfaceVisitor< TPixelType, TCellTraits >::CellInterfaceVisitor | ( | const Self & | ) | [private] |
virtual int itk::CellInterfaceVisitor< TPixelType, TCellTraits >::GetCellTopologyId | ( | ) | [pure virtual] |
Return the index of the CellTopology.
Implemented in itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >.
Referenced by itk::CellInterface< TPixelType, TCellTraits >::MultiVisitor::AddVisitor().
virtual const char* itk::CellInterfaceVisitor< TPixelType, TCellTraits >::GetNameOfClass | ( | ) | const [virtual] |
Run-time type information (and related methods).
Reimplemented from itk::LightObject.
Reimplemented in itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >.
void itk::CellInterfaceVisitor< TPixelType, TCellTraits >::operator= | ( | const Self & | ) | [private] |
virtual void itk::CellInterfaceVisitor< TPixelType, TCellTraits >::VisitFromCell | ( | CellIdentifier | cellId, |
CellInterface< TPixelType, TCellTraits > * | |||
) | [pure virtual] |
This method is called by each cell as it visits this visitor.
Implemented in itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >.