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