This file is indexed.

/usr/include/libecap/common/named_values.h is in libecap2-dev 0.2.0-1ubuntu4.

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

#ifndef LIBECAP__COMMON__NAMED_VALUES_H
#define LIBECAP__COMMON__NAMED_VALUES_H

#include <libecap/common/forward.h>

namespace libecap {

// API to "visit" name:value collections such as configuration or metainfo
class NamedValueVisitor {
	public:
		virtual ~NamedValueVisitor() {}

		// will be called for each name:value pair; should throw on errors
		virtual void visit(const Name &name, const Area &value) = 0;
};

} // namespace libecap

#endif