This file is indexed.

/usr/include/dune/grid/uggrid/uggridhieriterator.hh is in libdune-grid-dev 2.2.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef DUNE_UGHIERITERATOR_HH
#define DUNE_UGHIERITERATOR_HH

/** \file
 * \brief The UGGridHierarchicIterator class
 */

#include <stack>

#include <dune/grid/uggrid/uggridentitypointer.hh>

namespace Dune {

//**********************************************************************
//
// --UGGridHierarchicIterator
// --HierarchicIterator
  /** \brief Iterator over the descendants of an entity.
   * \ingroup UGGrid
  Mesh entities of codimension 0 ("elements") allow to visit all entities of
  codimension 0 obtained through nested, hierarchic refinement of the entity.
  Iteration over this set of entities is provided by the HierarchicIterator,
  starting from a given entity.
 */

template<class GridImp>
class UGGridHierarchicIterator :
        public Dune::UGGridEntityPointer <0,GridImp>
{

    friend class UGGridEntity<0,GridImp::dimension,GridImp>;

public:
    typedef typename GridImp::template Codim<0>::Entity Entity;

    //! the default Constructor
    UGGridHierarchicIterator(int maxLevel, const GridImp* gridImp) 
        : maxlevel_(maxLevel),
          gridImp_(gridImp)
    {}

    void increment();

  //! max level to go down 
  int maxlevel_;

    std::stack<typename UG_NS<GridImp::dimension>::Element*> elementStack_;

    const GridImp* gridImp_;
};

}  // end namespace Dune

#endif