dune-grid  2.2.0
common/hierarchiciterator.hh
Go to the documentation of this file.
1 #ifndef DUNE_GRID_HIERARCHICITERATOR_HH
2 #define DUNE_GRID_HIERARCHICITERATOR_HH
3 
5 
6 namespace Dune
7 {
8 
26 template<class GridImp, template<class> class HierarchicIteratorImp>
28 : public EntityIterator< 0, GridImp, HierarchicIteratorImp< GridImp > >
29 {
31 
32 public:
39  {
40  ++static_cast< Base & >( *this );
41  return *this;
42  }
43 
44  //===========================================================
48  //===========================================================
49 
52  HierarchicIterator (const HierarchicIteratorImp<const GridImp> & i) DUNE_DEPRECATED
53  : Base( i )
54  {}
56 };
57 
58 }
59 
60 #endif // DUNE_GRID_HIERARCHICITERATOR_HH