ITK  5.2.0
Insight Toolkit
itkMeshIOFactory.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  * http://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 itkMeshIOFactory_h
19 #define itkMeshIOFactory_h
20 #include "ITKIOMeshBaseExport.h"
21 
22 #include "itkObject.h"
23 #include "itkMeshIOBase.h"
24 #include "ITKIOMeshBaseExport.h"
25 
26 namespace itk
27 {
42 class ITKIOMeshBase_EXPORT MeshIOFactory : public Object
43 {
44 public:
45  ITK_DISALLOW_COPY_AND_MOVE(MeshIOFactory);
46 
49  using Superclass = Object;
52 
54  itkNewMacro(Self);
55 
57  itkTypeMacro(MeshIOFactory, Object);
58 
61 
63 #if !defined(ITK_LEGACY_REMOVE)
64  // We need to expose the enum values at the class level
65  // for backwards compatibility
66  static constexpr IOFileModeEnum ReadMode = IOFileModeEnum::ReadMode;
67  static constexpr IOFileModeEnum WriteMode = IOFileModeEnum::WriteMode;
68 #endif
69 
71  static MeshIOBasePointer
72  CreateMeshIO(const char * path, IOFileModeEnum mode);
73 
74 protected:
75  MeshIOFactory();
76  ~MeshIOFactory() override;
77 };
78 
79 } // end namespace itk
80 
81 #endif
itk::CommonEnums::IOFileMode
IOFileMode
Definition: itkCommonEnums.h:115
itk::SmartPointer< Self >
itk::MeshIOFactory
Create instances of MeshIO objects using an object factory.
Definition: itkMeshIOFactory.h:42
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:59
itk::CommonEnums::IOFileMode::WriteMode
itkMeshIOBase.h
itkObject.h
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::MeshIOBase::Pointer
SmartPointer< Self > Pointer
Definition: itkMeshIOBase.h:80
itk::Object
Base class for most ITK classes.
Definition: itkObject.h:62
itk::IOFileModeEnum
CommonEnums::IOFileMode IOFileModeEnum
Definition: itkCommonEnums.h:159
itk::CommonEnums::IOFileMode::ReadMode