This file is indexed.

/usr/include/trilinos/bc_specification.h is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.

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
#ifndef bc_specificationH
#define bc_specificationH

#include "StrLoopLimits.h"
#include "topology_enum.h"


class PG_BC_Specification{
public:
  PG_BC_Specification(long long the_id,Topo_Loc the_loc, bool is_block_boundary, long long the_block_id){
  id = the_id;
  location = the_loc;
  block_boundary_set = is_block_boundary;
  block_id = the_block_id;
  };

  ~PG_BC_Specification(){};

  long long id;
  long long block_id;
  Topo_Loc location;
  PAMGEN_NEVADA::LoopLimits limits;
  bool block_boundary_set;
};


#endif