Orfeo Toolbox  3.16
itkIndexedContainerInterface.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Insight Segmentation & Registration Toolkit
4  Module: $RCSfile: itkIndexedContainerInterface.h,v $
5  Language: C++
6  Date: $Date: 2009-02-05 19:04:58 $
7  Version: $Revision: 1.24 $
8 
9  Copyright (c) Insight Software Consortium. All rights reserved.
10  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
11 
12  This software is distributed WITHOUT ANY WARRANTY; without even
13  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14  PURPOSE. See the above copyright notices for more information.
15 
16 =========================================================================*/
17 #ifndef __itkIndexedContainerInterface_h
18 #define __itkIndexedContainerInterface_h
19 
20 #include "itkObject.h"
21 
22 namespace itk
23 {
24 
53 template <typename TElementIdentifier, typename TElement>
55 {
56 public:
59  typedef Object Superclass;
62 
65 
67  typedef TElementIdentifier ElementIdentifier;
68  typedef TElement Element;
69 
77 
85 
88 
93 
98 
101  bool IndexExists(ElementIdentifier) const;
102 
109 
115 
123 
130  class Iterator {};
131 
138  class ConstIterator {};
139 
141  Iterator Begin();
142 
144  Iterator End();
145 
147  ConstIterator Begin() const;
148 
150  ConstIterator End() const;
151 
153  unsigned long Size(void) const;
154 
160 
164  void Squeeze(void);
165 
168  void Initialize(void);
169 
170 };
171 
172 } // end namespace itk
173 
174 #endif

Generated at Sat May 18 2013 23:46:37 for Orfeo Toolbox with doxygen 1.8.3.1