ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkTreeContainer.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 __itkTreeContainer_h
19 #define __itkTreeContainer_h
20 
21 #include "itkTreeContainerBase.h"
23 
24 namespace itk
25 {
37 template< class TValueType >
38 class TreeContainer:public TreeContainerBase< TValueType >
39 {
40 public:
41 
47  typedef TValueType ValueType;
49 
53 
55  itkNewMacro(Self);
56 
58  itkTypeMacro(TreeContainer, TreeContainerBase);
59 
61  TreeContainer(int defaultChildrenCount);
62 
65 
67  virtual bool SetRoot(const TValueType element);
68 
70  bool SetRoot(IteratorType & pos);
71 
73  virtual bool SetRoot(TreeNode< TValueType > *node);
74 
76  bool Contains(const TValueType element);
77 
79  int Count() const;
80 
82  bool IsLeaf(const TValueType element);
83 
85  bool IsRoot(const TValueType element);
86 
88  bool Clear();
89 
92 
94  bool Swap(IteratorType & v, IteratorType & w);
95 
97  const TreeNodeType * GetRoot() const { return m_Root.GetPointer(); }
98 
100  bool Add(const TValueType child, const TValueType parent);
101 
103  const TreeNodeType * GetNode(TValueType val) const;
104 
105 protected:
106 
107  TreeContainer();
108  virtual ~TreeContainer();
109 
111 
113 
114  void PrintSelf(std::ostream & os, Indent indent) const;
115 };
116 } // namespace itk
117 
118 // Define instantiation macro for this template.
119 #define ITK_TEMPLATE_TreeContainer(_, EXPORT, TypeX, TypeY) \
120  namespace itk \
121  { \
122  _( 1 ( class EXPORT TreeContainer< ITK_TEMPLATE_1 TypeX > ) ) \
123  namespace Templates \
124  { \
125  typedef TreeContainer< ITK_TEMPLATE_1 TypeX > \
126  TreeContainer##TypeY; \
127  } \
128  }
129 
130 #if ITK_TEMPLATE_EXPLICIT
131 #include "Templates/itkTreeContainer+-.h"
132 #endif
133 
134 #if ITK_TEMPLATE_TXX
135 #include "itkTreeContainer.hxx"
136 #endif
137 
138 #endif
139