Create instances of VtkImageReader objects using an object factory. More...
#include <mitkVtkImageIOFactory.h>
Public Types | |
typedef VtkImageIOFactory | Self |
typedef itk::ObjectFactoryBase | Superclass |
typedef itk::SmartPointer< Self > | Pointer |
typedef itk::SmartPointer < const Self > | ConstPointer |
Public Member Functions | |
virtual const char * | GetITKSourceVersion (void) const |
virtual const char * | GetDescription (void) const |
itkFactorylessNewMacro (Self) | |
virtual const char * | GetClassName () const |
Static Public Member Functions | |
static VtkImageIOFactory * | FactoryNew () |
static void | RegisterOneFactory (void) |
Protected Member Functions | |
VtkImageIOFactory () | |
~VtkImageIOFactory () |
Create instances of VtkImageReader objects using an object factory.
Definition at line 33 of file mitkVtkImageIOFactory.h.
typedef itk::SmartPointer<const Self> mitk::VtkImageIOFactory::ConstPointer |
Definition at line 40 of file mitkVtkImageIOFactory.h.
typedef itk::SmartPointer<Self> mitk::VtkImageIOFactory::Pointer |
Definition at line 39 of file mitkVtkImageIOFactory.h.
Standard class typedefs.
Definition at line 37 of file mitkVtkImageIOFactory.h.
typedef itk::ObjectFactoryBase mitk::VtkImageIOFactory::Superclass |
Definition at line 38 of file mitkVtkImageIOFactory.h.
mitk::VtkImageIOFactory::VtkImageIOFactory | ( | ) | [protected] |
Definition at line 22 of file mitkVtkImageIOFactory.cpp.
{ VtkImageIOFactory::VtkImageIOFactory() { this->RegisterOverride("mitkIOAdapter",
mitk::VtkImageIOFactory::~VtkImageIOFactory | ( | ) | [protected] |
Definition at line 31 of file mitkVtkImageIOFactory.cpp.
static VtkImageIOFactory* mitk::VtkImageIOFactory::FactoryNew | ( | ) | [inline, static] |
Definition at line 48 of file mitkVtkImageIOFactory.h.
{ return new VtkImageIOFactory;}
virtual const char* mitk::VtkImageIOFactory::GetClassName | ( | ) | const [virtual] |
Run-time type information (and related methods).
const char * mitk::VtkImageIOFactory::GetDescription | ( | void | ) | const [virtual] |
Definition at line 40 of file mitkVtkImageIOFactory.cpp.
{
return ITK_SOURCE_VERSION;
}
const char * mitk::VtkImageIOFactory::GetITKSourceVersion | ( | void | ) | const [virtual] |
Class methods used to interface with the registered factories.
Definition at line 35 of file mitkVtkImageIOFactory.cpp.
{ }
mitk::VtkImageIOFactory::itkFactorylessNewMacro | ( | Self | ) |
Method for class instantiation.
static void mitk::VtkImageIOFactory::RegisterOneFactory | ( | void | ) | [inline, static] |
Register one factory of this type
Definition at line 53 of file mitkVtkImageIOFactory.h.
{ VtkImageIOFactory::Pointer VtkImageIOFactory = VtkImageIOFactory::New(); ObjectFactoryBase::RegisterFactory(VtkImageIOFactory); }