ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkSpatialObjectTreeContainer.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 itkSpatialObjectTreeContainer_h
19 #define itkSpatialObjectTreeContainer_h
20 
21 #include "itkTreeContainer.h"
23 
24 namespace itk
25 {
26 
27 // Forward reference because of circular dependencies
28 template< unsigned int TDimension >
29 class ITK_FORWARD_EXPORT SpatialObject;
30 
48 template< unsigned int TDimension >
49 class ITK_TEMPLATE_EXPORT SpatialObjectTreeContainer:
50  public TreeContainer< itk::SpatialObject< TDimension > * >
51 {
52 public:
53 
62 
64  typedef typename Superclass::IteratorType IteratorType;
65 
67  itkNewMacro(Self);
68 
71 
73  bool SetRoot(const SpatialObjectPointer element) ITK_OVERRIDE;
74 
75  bool SetRoot(typename Superclass::TreeNodeType *node) ITK_OVERRIDE
76  { return Superclass::SetRoot(node); }
77 
78 protected:
79 
81  virtual ~SpatialObjectTreeContainer() ITK_OVERRIDE;
82 };
83 } // namespace itk
84 
85 #ifndef ITK_MANUAL_INSTANTIATION
86 #include "itkSpatialObjectTreeContainer.hxx"
87 #endif
88 
89 #endif
Light weight base class for most itk classes.
bool SetRoot(typename Superclass::TreeNodeType *node) override
SpatialObjectTreeContainer< TDimension > Self
Array class with size defined at construction time.
TreeContainer< SpatialObjectPointer > Superclass
Implementation of the composite pattern.
A tree container.
SpatialObjectTreeNode< TDimension > TreeNodeType
SpatialObject< TDimension > SpatialObjectType