ITK  5.4.0
Insight Toolkit
itkTransformIOFactory.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkTransformIOFactory_h
19#define itkTransformIOFactory_h
20
21#include "itkObject.h"
22#include "itkTransformIOBase.h"
23#include "ITKIOTransformBaseExport.h"
24#include "itkCommonEnums.h"
25
26namespace itk
27{
28
29#if !defined(ITK_LEGACY_REMOVE)
30using TransformIOFactoryFileModeEnum = IOFileModeEnum;
31#endif
32
37template <typename TParametersValueType>
38class ITK_TEMPLATE_EXPORT TransformIOFactoryTemplate : public Object
39{
40public:
41 ITK_DISALLOW_COPY_AND_MOVE(TransformIOFactoryTemplate);
42
48
52 itkOverrideGetNameOfClassMacro(TransformIOFactoryTemplate);
53
56
61 CreateTransformIO(const char * path, IOFileModeEnum mode);
62
63protected:
66};
67
70
71} // end namespace itk
72
73// Note: Explicit instantiation is done in itkTransformIOFactory.cxx
74
75#endif
76
78#ifndef ITK_TEMPLATE_EXPLICIT_TransformIOFactory
79// Explicit instantiation is required to ensure correct dynamic_cast
80// behavior across shared libraries.
81//
82// IMPORTANT: Since within the same compilation unit,
83// ITK_TEMPLATE_EXPLICIT_<classname> defined and undefined states
84// need to be considered. This code *MUST* be *OUTSIDE* the header
85// guards.
86//
87#if defined(ITKIOTransformBase_EXPORTS)
88// We are building this library
89# define ITKIOTransformBase_EXPORT_EXPLICIT ITK_FORWARD_EXPORT
90#else
91// We are using this library
92# define ITKIOTransformBase_EXPORT_EXPLICIT ITKIOTransformBase_EXPORT
93#endif
94namespace itk
95{
96
97ITK_GCC_PRAGMA_DIAG_PUSH()
98ITK_GCC_PRAGMA_DIAG(ignored "-Wattributes")
99
102
103ITK_GCC_PRAGMA_DIAG_POP()
104
105} // end namespace itk
106#undef ITKIOTransformBase_EXPORT_EXPLICIT
107#endif
Light weight base class for most itk classes.
Base class for most ITK classes.
Definition: itkObject.h:62
Create instances of TransformIO objects using an object factory.
static TransformIOBasePointer CreateTransformIO(const char *path, IOFileModeEnum mode)
typename TransformIOBaseTemplate< TParametersValueType >::Pointer TransformIOBasePointer
#define ITKIOTransformBase_EXPORT_EXPLICIT
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
template class ITKIOTransformBase_EXPORT_EXPLICIT TransformIOFactoryTemplate< double >
template class ITKIOTransformBase_EXPORT_EXPLICIT TransformIOFactoryTemplate< float >
CommonEnums::IOFileMode IOFileModeEnum