/*========================================================================= * * Copyright Insight Software Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #ifndef itkTxtTransformIOFactory_h #define itkTxtTransformIOFactory_h #include "ITKIOTransformInsightLegacyExport.h" #include "itkObjectFactoryBase.h" #include "itkTransformIOBase.h" namespace itk { /** \class TxtTransformIOFactory * \brief Create instances of TxtTransformIO objects using an object factory. * \ingroup ITKIOTransformInsightLegacy */ class ITKIOTransformInsightLegacy_EXPORT TxtTransformIOFactory:public ObjectFactoryBase { public: /** Standard class typedefs. */ typedef TxtTransformIOFactory Self; typedef ObjectFactoryBase Superclass; typedef SmartPointer< Self > Pointer; typedef SmartPointer< const Self > ConstPointer; /** Class methods used to interface with the registered factories. */ virtual const char * GetITKSourceVersion(void) const ITK_OVERRIDE; virtual const char * GetDescription(void) const ITK_OVERRIDE; /** Method for class instantiation. */ itkFactorylessNewMacro(Self); /** Run-time type information (and related methods). */ itkTypeMacro(TxtTransformIOFactory, ObjectFactoryBase); /** Register one factory of this type */ static void RegisterOneFactory(void) { TxtTransformIOFactory::Pointer metaFactory = TxtTransformIOFactory::New(); ObjectFactoryBase::RegisterFactoryInternal(metaFactory); } protected: TxtTransformIOFactory(); ~TxtTransformIOFactory() ITK_OVERRIDE; virtual void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE; private: ITK_DISALLOW_COPY_AND_ASSIGN(TxtTransformIOFactory); }; } // end namespace itk #endif