This file is indexed.

/usr/include/libdap/ce_parser.h is in libdap-dev 3.15.1-7.

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

namespace libdap
{

struct ce_parser_arg
{
    ConstraintEvaluator *eval;
    DDS *dds;

    ce_parser_arg() : eval(0), dds(0)
    {}
    ce_parser_arg(ConstraintEvaluator *e, DDS *d) : eval(e), dds(d)
    {}
    virtual ~ce_parser_arg()
    {}

    ConstraintEvaluator *get_eval()
    {
        return eval;
    }
    void set_eval(ConstraintEvaluator *obj)
    {
        eval = obj;
    }

    DDS *get_dds()
    {
        return dds;
    }
    void set_dds(DDS *obj)
    {
        dds = obj;
    }
};

} // namespace libdap

#endif // CE_PARSER_H_