ITK  4.8.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
itk::SmartPointer< TObjectType > Class Template Reference

#include <itkSmartPointer.h>

+ Inheritance diagram for itk::SmartPointer< TObjectType >:

Detailed Description

template<typename TObjectType>
class itk::SmartPointer< TObjectType >

Implements transparent reference counting.

SmartPointer implements reference counting by overloading operator -> (and *) among others. This allows natural interface to the class referred to by the pointer without having to invoke special Register()/UnRegister() methods directly.

To compile / test this class Windows: cl SmartPointerTest.cxx; .\SmartPointerTest.exe linux: c++ SmartPointerTest.cxx ./a.out other: CCcompiler SmartPointerTest.cxx ./a.out

Examples:
Examples/RegistrationITKv3/DeformableRegistration10.cxx, Examples/RegistrationITKv3/DeformableRegistration2.cxx, Examples/RegistrationITKv3/DeformableRegistration3.cxx, Examples/RegistrationITKv3/DeformableRegistration5.cxx, Examples/RegistrationITKv3/DeformableRegistration9.cxx, Examples/RegistrationITKv4/DeformableRegistration10.cxx, Examples/RegistrationITKv4/DeformableRegistration2.cxx, Examples/RegistrationITKv4/DeformableRegistration3.cxx, Examples/RegistrationITKv4/DeformableRegistration5.cxx, and Examples/RegistrationITKv4/DeformableRegistration9.cxx.

Definition at line 55 of file itkSmartPointer.h.

Public Types

typedef TObjectType ObjectType
 

Public Member Functions

ObjectTypeGetPointer () const
 
bool IsNotNull () const
 
bool IsNull () const
 
 operator ObjectType * () const
 
template<typename TR >
bool operator!= (TR r) const
 
ObjectTypeoperator-> () const
 
bool operator< (const SmartPointer &r) const
 
bool operator<= (const SmartPointer &r) const
 
SmartPointeroperator= (const SmartPointer &r)
 
template<typename TR >
bool operator== (TR r) const
 
bool operator> (const SmartPointer &r) const
 
bool operator>= (const SmartPointer &r) const
 
 SmartPointer ()
 
 SmartPointer (const SmartPointer< ObjectType > &p)
 
 SmartPointer (ObjectType *p)
 
void swap (SmartPointer &other)
 
 ~SmartPointer ()
 
SmartPointeroperator= (ObjectType *r)
 
ObjectTypePrint (std::ostream &os) const
 

Private Member Functions

void Register ()
 
void UnRegister () ITK_SP_NOEXCEPT
 

Private Attributes

ObjectTypem_Pointer
 

Member Typedef Documentation

template<typename TObjectType>
typedef TObjectType itk::SmartPointer< TObjectType >::ObjectType

Definition at line 58 of file itkSmartPointer.h.

Constructor & Destructor Documentation

template<typename TObjectType>
itk::SmartPointer< TObjectType >::SmartPointer ( )
inline

Constructor

Definition at line 61 of file itkSmartPointer.h.

template<typename TObjectType>
itk::SmartPointer< TObjectType >::SmartPointer ( const SmartPointer< ObjectType > &  p)
inline

Copy constructor

Definition at line 65 of file itkSmartPointer.h.

template<typename TObjectType>
itk::SmartPointer< TObjectType >::SmartPointer ( ObjectType p)
inline

Constructor to pointer p

Definition at line 70 of file itkSmartPointer.h.

template<typename TObjectType>
itk::SmartPointer< TObjectType >::~SmartPointer ( )
inline

Destructor

Definition at line 75 of file itkSmartPointer.h.

Member Function Documentation

template<typename TObjectType>
ObjectType* itk::SmartPointer< TObjectType >::GetPointer ( ) const
inline

Access function to pointer.

Definition at line 108 of file itkSmartPointer.h.

Referenced by itk::fem::LoadElement::AddNextElement(), itk::fem::FEMObject< VDimension >::AddNextLoad(), itk::fem::FEMObject< VDimension >::AddNextMaterial(), itk::watershed::BoundaryResolver< TPixelType, TDimension >::BoundaryResolver(), itk::ObjectFactory< T >::Create(), itk::BSplineDeformableTransform< TParametersValueType, NDimensions, VSplineOrder >::CreateAnother(), itk::CreateObjectFunction< T >::CreateObject(), itk::watershed::EquivalenceRelabeler< TScalar, TImageDimension >::EquivalenceRelabeler(), itk::ExposeMetaData(), itk::SegmentationLevelSetFunction< TImageType, TFeatureImageType >::GetAdvectionImage(), itk::FastMarchingExtensionImageFilter< TLevelSet, TAuxValue, VAuxDimension, TSpeedImage >::GetAuxiliaryAliveValues(), itk::ClassifierBase< TInputImage >::GetDecisionRule(), itk::Statistics::KdTree< TSample >::GetDistanceMetric(), itk::SpatialObjectFactoryBase::GetFactory(), itk::FEMFactoryBase::GetFactory(), itk::FEMObjectSpatialObject< TDimension >::GetFEMObject(), itk::testhelper::ImageRegistrationMethodImageSource< TFixedPixelType, TMovingPixelType, NDimension >::GetFixedImage(), itk::VideoStream< TFrameType >::GetFrameBuffer(), itk::fem::Solver< TDimension >::GetInterpolationGrid(), itkv3::Rigid3DTransform< TParametersValueType >::GetInverseTransform(), itk::IdentityTransform< TParametersValueType, NDimensions >::GetInverseTransform(), itk::fem::Element3DMembrane1DOF< Element3DC0LinearTriangular >::GetMaterial(), itk::testhelper::ImageRegistrationMethodImageSource< TFixedPixelType, TMovingPixelType, NDimension >::GetMovingImage(), itk::SpecialCoordinatesImage< TPixel, 3 >::GetPixelContainer(), itk::Image< TNode *, VImageDimension >::GetPixelContainer(), itk::VectorImage< TPixelType, Dimension >::GetPixelContainer(), itk::TreeContainer< itk::SpatialObject< TDimension > * >::GetRoot(), itk::HistogramThresholdCalculator< THistogram, TOutput >::MakeOutput(), itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MakeOutputTransform(), itk::fem::CompareLandmarkDisplacementError::operator()(), itk::SmartPointer< const Self >::operator=(), itk::watershed::BoundaryResolver< TPixelType, TDimension >::SetEquivalencyTable(), itk::fem::Element2DStress< Element2DC0LinearTriangular >::SetMaterial(), itk::fem::FiniteDifferenceFunctionLoad< TMoving, TFixed >::SetMetric(), and itk::MetaSceneConverter< NDimensions, PixelType, TMeshTraits >::SpatialObjectToMetaObject().

template<typename TObjectType>
bool itk::SmartPointer< TObjectType >::IsNotNull ( ) const
inline
template<typename TObjectType>
bool itk::SmartPointer< TObjectType >::IsNull ( ) const
inline
template<typename TObjectType>
itk::SmartPointer< TObjectType >::operator ObjectType * ( ) const
inline

Return pointer to object.

Definition at line 87 of file itkSmartPointer.h.

template<typename TObjectType>
template<typename TR >
bool itk::SmartPointer< TObjectType >::operator!= ( TR  r) const
inline

Definition at line 104 of file itkSmartPointer.h.

template<typename TObjectType>
ObjectType* itk::SmartPointer< TObjectType >::operator-> ( ) const
inline

Overload operator ->

Definition at line 83 of file itkSmartPointer.h.

template<typename TObjectType>
bool itk::SmartPointer< TObjectType >::operator< ( const SmartPointer< TObjectType > &  r) const
inline

Comparison of pointers. Less than comparison.

Definition at line 112 of file itkSmartPointer.h.

template<typename TObjectType>
bool itk::SmartPointer< TObjectType >::operator<= ( const SmartPointer< TObjectType > &  r) const
inline

Comparison of pointers. Less than or equal to comparison.

Definition at line 120 of file itkSmartPointer.h.

template<typename TObjectType>
SmartPointer& itk::SmartPointer< TObjectType >::operator= ( const SmartPointer< TObjectType > &  r)
inline

Overload operator assignment.

Definition at line 129 of file itkSmartPointer.h.

Referenced by itk::SmartPointer< const Self >::operator=().

template<typename TObjectType>
SmartPointer& itk::SmartPointer< TObjectType >::operator= ( ObjectType r)
inline

Overload operator assignment.

Definition at line 133 of file itkSmartPointer.h.

template<typename TObjectType>
template<typename TR >
bool itk::SmartPointer< TObjectType >::operator== ( TR  r) const
inline

Template comparison operators.

Definition at line 100 of file itkSmartPointer.h.

template<typename TObjectType>
bool itk::SmartPointer< TObjectType >::operator> ( const SmartPointer< TObjectType > &  r) const
inline

Comparison of pointers. Greater than comparison.

Definition at line 116 of file itkSmartPointer.h.

template<typename TObjectType>
bool itk::SmartPointer< TObjectType >::operator>= ( const SmartPointer< TObjectType > &  r) const
inline

Comparison of pointers. Greater than or equal to comparison.

Definition at line 124 of file itkSmartPointer.h.

template<typename TObjectType>
ObjectType* itk::SmartPointer< TObjectType >::Print ( std::ostream &  os) const
inline

Function to print object pointed to

Definition at line 143 of file itkSmartPointer.h.

template<typename TObjectType>
void itk::SmartPointer< TObjectType >::Register ( )
inlineprivate

Definition at line 169 of file itkSmartPointer.h.

Referenced by itk::SmartPointer< const Self >::SmartPointer().

template<typename TObjectType>
void itk::SmartPointer< TObjectType >::swap ( SmartPointer< TObjectType > &  other)
inline

Definition at line 158 of file itkSmartPointer.h.

Referenced by itk::SmartPointer< const Self >::operator=(), and itk::swap().

template<typename TObjectType>
void itk::SmartPointer< TObjectType >::UnRegister ( )
inlineprivate

Member Data Documentation

template<typename TObjectType>
ObjectType* itk::SmartPointer< TObjectType >::m_Pointer
private

The documentation for this class was generated from the following file: