Reference documentation for deal.II version 9.0.0
tria_iterator_selector.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2003 - 2018 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 TriangulationImplementation
35  {
36  template <int dim, int spacedim>
37  struct Iterators;
38 
69  template <int spacedim>
70  struct Iterators<1,spacedim>
71  {
75 
79 
83  };
84 
85 
86 
123  template <int spacedim>
124  struct Iterators<2,spacedim>
125  {
129 
133 
137  };
138 
139 
161  template <int spacedim>
162  struct Iterators<3,spacedim>
163  {
167 
171 
175  };
176 
177  }
178 
179 }
180 
181 DEAL_II_NAMESPACE_CLOSE
182 
183 #endif // dealii_tria_iterator_selector_h