ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkChildTreeIterator.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkChildTreeIterator_h
19 #define itkChildTreeIterator_h
20 
21 #include "itkTreeIteratorBase.h"
22 
23 namespace itk
24 {
25 template< typename TTreeType >
26 class ITK_TEMPLATE_EXPORT ChildTreeIterator:public TreeIteratorBase< TTreeType >
27 {
28 public:
29 
33  using TreeType = TTreeType;
34  using ValueType = typename TTreeType::ValueType;
36  using ChildIdentifier = typename TreeNodeType::ChildIdentifier;
37  using NodeType = typename Superclass::NodeType;
38 
40  ChildTreeIterator(TreeType *tree, const TreeNodeType *start = nullptr);
41 
44 
46  NodeType GetType() const override;
47 
49  bool GoToChild(ChildIdentifier number = 0) override;
50 
52  bool GoToParent() override;
53 
55  TreeIteratorBase< TTreeType > * Clone() override;
56 
58  Self & operator=(Superclass & iterator)
59  {
60  if(this != &iterator)
61  {
62  Superclass::operator=(iterator);
63  auto & it = static_cast< ChildTreeIterator< TTreeType > & >( iterator );
64  m_ListPosition = it.m_ListPosition;
65  m_ParentNode = it.m_ParentNode;
66  }
67  return *this;
68  }
70 
71 protected:
72 
74  const ValueType & Next() override;
75 
77  bool HasNext() const override;
78 
79 private:
80 
83 };
84 
85 } // end namespace itk
86 
87 #ifndef ITK_MANUAL_INSTANTIATION
88 #include "itkChildTreeIterator.hxx"
89 #endif
90 
91 #endif
typename Superclass::TreeNodeType TreeNodeType
typename TTreeType::ValueType ValueType
typename TreeNodeType::ChildIdentifier ChildIdentifier
This class provides the base implementation for tree iterators.
ChildIdentifier m_ListPosition
typename TTreeType::TreeNodeType TreeNodeType
Self & operator=(Superclass &iterator)