This file is indexed.

/usr/include/libecap/common/delay.h is in libecap3-dev 1.0.1-3ubuntu3.

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
/* (C) 2008 The Measurement Factory */

#ifndef LIBECAP__COMMON__DELAY_H
#define LIBECAP__COMMON__DELAY_H

#include <libecap/common/forward.h>

namespace libecap {

// encapsulates processing delay information
class Delay {
	public:
		Delay():
			progress(-1) {}
		explicit Delay(const std::string &state_):
			state(state_), progress(-1) {}
		Delay(const std::string &state_, double progress_):
			state(state_), progress(progress_) {}

		bool knownState() const { return progress >= 0.0; }
		bool knownProgress() const { return state.size() > 0; }

		std::string state; // user-friendly state description or empty
		double progress; // completed work fraction in (0,1) range or negative
};

} // namespace libecap

#endif