Loading [MathJax]/extensions/TeX/AMSsymbols.js
 Reference documentation for deal.II version 8.5.1
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
tria_iterator_selector.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2003 - 2016 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE at
12 // the top level of the deal.II distribution.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii__tria_iterator_selector_h
17 #define dealii__tria_iterator_selector_h
18 
19 
20 #include <deal.II/base/config.h>
21 
22 DEAL_II_NAMESPACE_OPEN
23 
24 template <int dim, int spacedim> class CellAccessor;
25 template <int, int, int> class InvalidAccessor;
26 template <int, int, int> class TriaAccessor;
27 template <int dim, int spacedim> class TriaAccessor<0, dim, spacedim>;
28 template <typename Accessor> class TriaRawIterator;
29 template <typename Accessor> class TriaIterator;
30 template <typename Accessor> class TriaActiveIterator;
31 
32 namespace internal
33 {
34  namespace Triangulation
35  {
36  template <int dim, int spacedim>
37  struct Iterators;
38 
72  template <int spacedim>
73  struct Iterators<1,spacedim>
74  {
78 
82 
86 
90 
92  };
93 
94 
95 
135  template <int spacedim>
136  struct Iterators<2,spacedim>
137  {
141 
145 
149 
153 
155  };
156 
157 
179  template <int spacedim>
180  struct Iterators<3,spacedim>
181  {
185 
189 
193 
197 
199  };
200 
201  }
202 
203 }
204 
205 DEAL_II_NAMESPACE_CLOSE
206 
207 #endif // dealii__tria_iterator_selector_h