ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkCellInterfaceVisitor.h>
A template class used to implement a visitor object.
A template class used to implement a visitor object.
The Visitor implementation does the down cast to the specific cell type that is being visited. After the cast, a member of the UserVisitor type called Visit is passed the exact cell type being visited. To use this class, write a class that implements a function Visit(int id, CellTopology*). Then, use that as the UserVisitor template parameter.
Template parameters for CellInterfaceVisitorImplementation: TPixelType = see CellInterface
TCellTraits = see CellInterface
CellTopology = The specific type of cell that needs to be visited.
UserVisitor = A user supplied class that implements the function Visit(int id, CellTopology*)
Definition at line 111 of file itkCellInterfaceVisitor.h.
Public Types | |
typedef TCellTraits::CellIdentifier | CellIdentifier |
typedef SmartPointer< Self > | Pointer |
typedef CellInterfaceVisitorImplementation | Self |
Public Types inherited from itk::CellInterfaceVisitor< TPixelType, TCellTraits > | |
typedef TCellTraits::CellIdentifier | CellIdentifier |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef CellInterfaceVisitor | Self |
typedef LightObject | Superclass |
Public Types inherited from itk::LightObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef LightObject | Self |
Public Member Functions | |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual int | GetCellTopologyId () |
virtual const char * | GetNameOfClass () const |
void | VisitFromCell (CellIdentifier cellId, CellInterface< TPixelType, TCellTraits > *c) |
Static Public Member Functions | |
static Pointer | New () |
Protected Member Functions | |
CellInterfaceVisitorImplementation () | |
~CellInterfaceVisitorImplementation () | |
Protected Member Functions inherited from itk::CellInterfaceVisitor< TPixelType, TCellTraits > | |
CellInterfaceVisitor () | |
~CellInterfaceVisitor () | |
Protected Member Functions inherited from itk::LightObject | |
virtual LightObject::Pointer | InternalClone () const |
LightObject () | |
virtual void | PrintHeader (std::ostream &os, Indent indent) const |
virtual void | PrintSelf (std::ostream &os, Indent indent) const |
virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
virtual | ~LightObject () |
Private Member Functions | |
CellInterfaceVisitorImplementation (const Self &) | |
void | operator= (const Self &) |
Additional Inherited Members | |
Protected Types inherited from itk::LightObject | |
typedef int | InternalReferenceCountType |
Protected Attributes inherited from itk::LightObject | |
InternalReferenceCountType | m_ReferenceCount |
SimpleFastMutexLock | m_ReferenceCountLock |
typedef TCellTraits::CellIdentifier itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >::CellIdentifier |
Definition at line 118 of file itkCellInterfaceVisitor.h.
typedef SmartPointer< Self > itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >::Pointer |
Definition at line 117 of file itkCellInterfaceVisitor.h.
typedef CellInterfaceVisitorImplementation itk::CellInterfaceVisitorImplementation< TPixelType, TCellTraits, CellTopology, UserVisitor >::Self |
Standard class typedefs.
Definition at line 116 of file itkCellInterfaceVisitor.h.
|
inlineprotected |
Definition at line 139 of file itkCellInterfaceVisitor.h.
|
inlineprotected |
Definition at line 140 of file itkCellInterfaceVisitor.h.
|
private |
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::LightObject.
|
inlinevirtual |
Call the static method GetTopologyId for the CellTopology type that we are templated over.
Implements itk::CellInterfaceVisitor< TPixelType, TCellTraits >.
Definition at line 128 of file itkCellInterfaceVisitor.h.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::CellInterfaceVisitor< TPixelType, TCellTraits >.
|
static |
Method for creation through the object factory.
|
private |
|
inlinevirtual |
Call the method Visit from the UserVisitor template parameter that this class inherits from. I am my own gradpa...
Implements itk::CellInterfaceVisitor< TPixelType, TCellTraits >.
Definition at line 132 of file itkCellInterfaceVisitor.h.