This file is indexed.

/usr/include/dune/grid/utility/grapedataioformattypes.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
#ifndef DUNE_GRAPEDATAIOFORMATTYPE_HH
#define DUNE_GRAPEDATAIOFORMATTYPE_HH

//- system includes 
#include <string>

namespace Dune {

  /*! 
    Specify the format to store grid and vector data
  */
  enum GrapeIOFileFormatType 
      { ascii = 0 , //!< store data in a human readable form
        xdr = 1   , //!< store data in SUN's library routines
                    //!< for external data representation (xdr)
        pgm = 2 };  //!< store data in portable graymap file format 


typedef std::string GrapeIOStringType;

/** \brief convert type to string 
 */
template <typename T>
inline GrapeIOStringType typeIdentifier ()
{
  GrapeIOStringType tmp = "unknown";
  return tmp;
}

template <>
inline GrapeIOStringType typeIdentifier<float> ()
{
  GrapeIOStringType tmp = "float";
  return tmp;
}

template <>
inline GrapeIOStringType typeIdentifier<int> ()
{
  GrapeIOStringType tmp = "int";
  return tmp;
}

template <>
inline GrapeIOStringType typeIdentifier<double> ()
{
  GrapeIOStringType tmp = "double";
  return tmp;
}

} // end namespace Dune 

#endif