This file is indexed.

/usr/include/JAGS/model/MonitorInfo.h is in jags 3.4.0-1.

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

#include <string>
#include <sarray/Range.h>

class Monitor;

/**
 * @short Info a monitor 
 */
class MonitorInfo {
    Monitor * _monitor;
    std::string _name;
    Range _range;
    std::string _type;
public:
    /** 
     * Constructor
     * @param monitor Monitor 
     
     */
    MonitorInfo(Monitor *monitor, std::string const &name,
		Range const &range, std::string const &type);
    Monitor *monitor() const;
    std::string const &name() const;
    std::string const &type() const;
    Range const &range() const;
    bool operator==(MonitorInfo const &rhs) const;
};

#endif /* MONITOR_INFO_H_ */