OTB  9.0.0
Orfeo Toolbox
otbPathListToPathListFilter.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 otbPathListToPathListFilter_h
22 #define otbPathListToPathListFilter_h
23 
25 #include "otbObjectList.h"
26 
27 namespace otb
28 {
34 template <class TPath>
35 class ITK_EXPORT PathListToPathListFilter : public ObjectListToObjectListFilter<ObjectList<TPath>, ObjectList<TPath>>
36 {
37 public:
41  typedef itk::SmartPointer<Self> Pointer;
42  typedef itk::SmartPointer<const Self> ConstPointer;
43 
45  itkNewMacro(Self);
46 
49 
51  typedef typename Superclass::InputObjectType PathType;
53  typedef typename PathType::Pointer PathPointerType;
57  typedef typename PathType::Pointer OutputPathPointerType;
60 
61 protected:
64 
67  {
68  }
69 
70 private:
71  PathListToPathListFilter(const Self&) = delete;
72  void operator=(const Self&) = delete;
73 };
74 } // End namespace otb
75 
76 #endif
otbObjectListToObjectListFilter.h
otb::PathListToPathListFilter::~PathListToPathListFilter
~PathListToPathListFilter() override
Definition: otbPathListToPathListFilter.h:66
otb::PathListToPathListFilter::OutputPathListPointerType
Superclass::OutputListPointer OutputPathListPointerType
Definition: otbPathListToPathListFilter.h:59
otb::PathListToPathListFilter::OutputPathType
Superclass::OutputObjectType OutputPathType
Definition: otbPathListToPathListFilter.h:56
otb::PathListToPathListFilter::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbPathListToPathListFilter.h:41
otb::PathListToPathListFilter
Base class for filter taking a PathList as input a returning a PathList.
Definition: otbPathListToPathListFilter.h:35
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::PathListToPathListFilter::PathPointerType
PathType::Pointer PathPointerType
Definition: otbPathListToPathListFilter.h:53
otb::PathListToPathListFilter::OutputPathPointerType
PathType::Pointer OutputPathPointerType
Definition: otbPathListToPathListFilter.h:57
otb::ObjectList::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbObjectList.h:46
otb::PathListToPathListFilter::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbPathListToPathListFilter.h:42
otb::ObjectListToObjectListFilter
Base class for filters that take an ObjectList as input and produce an ObjectList as output.
Definition: otbObjectListToObjectListFilter.h:46
otb::PathListToPathListFilter::Self
PathListToPathListFilter Self
Definition: otbPathListToPathListFilter.h:39
otb::PathListToPathListFilter::PathListToPathListFilter
PathListToPathListFilter()
Definition: otbPathListToPathListFilter.h:63
otb::PathListToPathListFilter::Superclass
ObjectListToObjectListFilter< ObjectList< TPath >, ObjectList< TPath > > Superclass
Definition: otbPathListToPathListFilter.h:40
otb::ObjectListToObjectListFilter< ObjectList< TPath >, ObjectList< TPath > >::OutputObjectType
OutputListType::ObjectType OutputObjectType
Definition: otbObjectListToObjectListFilter.h:68
otbObjectList.h
otb::PathListToPathListFilter::PathListType
Superclass::InputListType PathListType
Definition: otbPathListToPathListFilter.h:52
otb::PathListToPathListFilter::OutputPathListType
Superclass::OutputListType OutputPathListType
Definition: otbPathListToPathListFilter.h:58
otb::PathListToPathListFilter::PathListConstPointerType
PathListType::ConstPointer PathListConstPointerType
Definition: otbPathListToPathListFilter.h:55
otb::ObjectList::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbObjectList.h:47
otb::ObjectListToObjectListFilter< ObjectList< TPath >, ObjectList< TPath > >::OutputListPointer
ObjectList< TPath > ::Pointer OutputListPointer
Definition: otbObjectListToObjectListFilter.h:65
otb::ObjectList
This class is a generic all-purpose wrapping around an std::vector<itk::SmartPointer<ObjectType> >.
Definition: otbObjectList.h:40
otb::PathListToPathListFilter::PathListPointerType
PathListType::Pointer PathListPointerType
Definition: otbPathListToPathListFilter.h:54
otb::PathListToPathListFilter::PathType
Superclass::InputObjectType PathType
Definition: otbPathListToPathListFilter.h:48