ITK  5.4.0
Insight Toolkit
itkImageIOFactory.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 itkImageIOFactory_h
19 #define itkImageIOFactory_h
20 #include "ITKIOImageBaseExport.h"
21 
22 #include "itkObject.h"
23 #include "itkImageIOBase.h"
24 
25 namespace itk
26 {
31 class ITKIOImageBase_EXPORT ImageIOFactory : public Object
32 {
33 public:
34  ITK_DISALLOW_COPY_AND_MOVE(ImageIOFactory);
35 
38  using Superclass = Object;
41 
45  itkOverrideGetNameOfClassMacro(ImageIOFactory);
46 
49 
51 #if !defined(ITK_LEGACY_REMOVE)
52  using FileModeEnum = itk::IOFileModeEnum;
53  using FileModeType = IOFileModeEnum;
54  // We need to expose the enum values at the class level
55  // for backwards compatibility
56  static constexpr IOFileModeEnum ReadMode = IOFileModeEnum::ReadMode;
57  static constexpr IOFileModeEnum WriteMode = IOFileModeEnum::WriteMode;
58 #endif
59 
61  static ImageIOBasePointer
62  CreateImageIO(const char * path, IOFileModeEnum mode);
63 
64 protected:
66  ~ImageIOFactory() override;
67 };
68 
69 } // end namespace itk
70 
71 #endif
itk::ImageIOFactory
Create instances of ImageIO objects using an object factory.
Definition: itkImageIOFactory.h:31
itk::CommonEnums::IOFileMode
IOFileMode
Definition: itkCommonEnums.h:115
itk::SmartPointer< Self >
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itk::CommonEnums::IOFileMode::WriteMode
itk::ImageIOBase::Pointer
SmartPointer< Self > Pointer
Definition: itkImageIOBase.h:85
itkImageIOBase.h
itkObject.h
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::Object
Base class for most ITK classes.
Definition: itkObject.h:61
itk::IOFileModeEnum
CommonEnums::IOFileMode IOFileModeEnum
Definition: itkCommonEnums.h:160
itk::CommonEnums::IOFileMode::ReadMode