OTB  9.0.0
Orfeo Toolbox
otbOpticalDefaultImageMetadataInterfaceFactory.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2022 Centre National d'Etudes Spatiales (CNES)
3  *
4  * This file is part of Orfeo Toolbox
5  *
6  * https://www.orfeo-toolbox.org/
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 #ifndef otbOpticalDefaultImageMetadataInterfaceFactory_h
22 #define otbOpticalDefaultImageMetadataInterfaceFactory_h
23 
24 #include "OTBMetadataExport.h"
25 #include "itkObjectFactoryBase.h"
26 
27 namespace otb
28 {
35 class OTBMetadata_EXPORT OpticalDefaultImageMetadataInterfaceFactory : public itk::ObjectFactoryBase
36 {
37 public:
40  typedef itk::ObjectFactoryBase Superclass;
41  typedef itk::SmartPointer<Self> Pointer;
42  typedef itk::SmartPointer<const Self> ConstPointer;
43 
45  const char* GetITKSourceVersion(void) const override;
46  const char* GetDescription(void) const override;
48 
50  itkFactorylessNewMacro(Self);
51 
53  itkTypeMacro(OpticalDefaultImageMetadataInterfaceFactory, itk::ObjectFactoryBase);
54 
56  static void RegisterOneFactory(void)
57  {
59  itk::ObjectFactoryBase::RegisterFactory(DefaultIMIFactory);
60  }
62 
63 protected:
66 
67 private:
68  OpticalDefaultImageMetadataInterfaceFactory(const Self&) = delete;
69  void operator=(const Self&) = delete;
70 };
71 
72 } // end namespace otb
73 
74 #endif
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::OpticalDefaultImageMetadataInterfaceFactory::RegisterOneFactory
static void RegisterOneFactory(void)
Definition: otbOpticalDefaultImageMetadataInterfaceFactory.h:56
otb::OpticalDefaultImageMetadataInterfaceFactory::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbOpticalDefaultImageMetadataInterfaceFactory.h:41
otb::OpticalDefaultImageMetadataInterfaceFactory::Superclass
itk::ObjectFactoryBase Superclass
Definition: otbOpticalDefaultImageMetadataInterfaceFactory.h:40
otb::OpticalDefaultImageMetadataInterfaceFactory::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbOpticalDefaultImageMetadataInterfaceFactory.h:42
otb::OpticalDefaultImageMetadataInterfaceFactory::New
static Pointer New(void)
otb::OpticalDefaultImageMetadataInterfaceFactory::Self
OpticalDefaultImageMetadataInterfaceFactory Self
Definition: otbOpticalDefaultImageMetadataInterfaceFactory.h:39
otb::OpticalDefaultImageMetadataInterfaceFactory
Creating an instance of a OpticalImageMetadataInterface object using object factory....
Definition: otbOpticalDefaultImageMetadataInterfaceFactory.h:35