OTB  9.0.0
Orfeo Toolbox
otbWrapperAbstractParameterList.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 otbWrapperAbstractParameterList_h
22 #define otbWrapperAbstractParameterList_h
23 
24 
25 #include "otbWrapperParameter.h"
27 
28 
29 namespace otb
30 {
31 
32 namespace Wrapper
33 {
34 
35 
41 class OTBApplicationEngine_EXPORT AbstractParameterList : public Parameter, public StringListInterface
42 {
43  //
44  // Public types.
45 public:
49 
50  //
51  // Public methods.
52 public:
54  itkTypeMacro(AbstractParameterList, Parameter);
55 
56  //
57  // Protected methods.
58 protected:
61 
63  ~AbstractParameterList() override;
64 
65  //
66  // Private methods.
67 private:
68  AbstractParameterList(const Parameter&) = delete;
69  void operator=(const Parameter&) = delete;
70 
71  //
72  // Protected methods.
73 protected:
74  //
75  // Private attributes.
76 private:
77 }; // End class InputImage Parameter
78 
79 } // End namespace Wrapper
80 
81 } // End namespace otb
82 
83 #endif
otb::Wrapper::Parameter
This class represent a parameter for the wrapper framework This class is a high level class represent...
Definition: otbWrapperParameter.h:49
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::Wrapper::StringListInterface
This class represents a list of InputFilename parameter.
Definition: otbWrapperStringListInterface.h:44
otbWrapperStringListInterface.h
otb::Wrapper::AbstractParameterList
This class is a base class for list-type parameters.
Definition: otbWrapperAbstractParameterList.h:41
otb::Wrapper::AbstractParameterList::Self
AbstractParameterList Self
Definition: otbWrapperAbstractParameterList.h:47
otbWrapperParameter.h
otb::Wrapper::AbstractParameterList::Superclass
Parameter Superclass
Definition: otbWrapperAbstractParameterList.h:48