dune-grid  2.3.1
common/hierarchiciterator.hh
Go to the documentation of this file.
1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi: set et ts=4 sw=2 sts=2:
3 #ifndef DUNE_GRID_HIERARCHICITERATOR_HH
4 #define DUNE_GRID_HIERARCHICITERATOR_HH
5 
6 #warning This file is deprecated, and will be removed in the release after dune-2.3
7 
9 
10 namespace Dune
11 {
12 
30  template<class GridImp, template<class> class HierarchicIteratorImp>
32  : public EntityIterator< 0, GridImp, HierarchicIteratorImp< GridImp > >
33  {
35 
36  public:
43  {
44  ++static_cast< Base & >( *this );
45  return *this;
46  }
47 
48  };
49 
50 }
51 
52 #endif // DUNE_GRID_HIERARCHICITERATOR_HH
HierarchicIterator & operator++()
Preincrement operator.
Definition: common/hierarchiciterator.hh:42
Enables iteration over all codim zero entities in a subtree See also the documentation of Dune::Entit...
Definition: common/hierarchiciterator.hh:31
interface class for an iterator over grid entitiesAn entity iterator is an iterator over a subset of ...
Definition: entityiterator.hh:35