OTB  9.0.0
Orfeo Toolbox
otbWrapperApplicationFactoryBase.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 otbWrapperApplicationFactoryBase_h
22 #define otbWrapperApplicationFactoryBase_h
23 
24 #include "OTBApplicationEngineExport.h"
25 #include "itkObjectFactoryBase.h"
26 #include "otbWrapperApplication.h"
27 
28 namespace otb
29 {
30 namespace Wrapper
31 {
32 
33 class OTBApplicationEngine_EXPORT ApplicationFactoryBase : public itk::ObjectFactoryBase
34 {
35 public:
38  typedef itk::ObjectFactoryBase Superclass;
39  typedef itk::SmartPointer<Self> Pointer;
40  typedef itk::SmartPointer<const Self> ConstPointer;
41 
43  itkTypeMacro(ApplicationFactoryBase, itk::ObjectFactoryBase);
44 
46  Application::Pointer CreateApplication(const char* name);
47 
48 protected:
50  {
51  }
52 
54  {
55  }
56 
57 private:
58  ApplicationFactoryBase(const Self&) = delete;
59  void operator=(const Self&) = delete;
60 };
61 
62 } // end namespace Wrapper
63 } // end namespace otb
64 
65 #endif
otb::Wrapper::Application::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbWrapperApplication.h:82
otb::Wrapper::ApplicationFactoryBase::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbWrapperApplicationFactoryBase.h:40
otbWrapperApplication.h
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::Wrapper::ApplicationFactoryBase::Superclass
itk::ObjectFactoryBase Superclass
Definition: otbWrapperApplicationFactoryBase.h:38
otb::Wrapper::ApplicationFactoryBase::ApplicationFactoryBase
ApplicationFactoryBase()
Definition: otbWrapperApplicationFactoryBase.h:49
otb::Wrapper::ApplicationFactoryBase::~ApplicationFactoryBase
~ApplicationFactoryBase() override
Definition: otbWrapperApplicationFactoryBase.h:53
otb::Wrapper::ApplicationFactoryBase::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbWrapperApplicationFactoryBase.h:39
otb::Wrapper::ApplicationFactoryBase
Definition: otbWrapperApplicationFactoryBase.h:33
otb::Wrapper::ApplicationFactoryBase::Self
ApplicationFactoryBase Self
Definition: otbWrapperApplicationFactoryBase.h:37