This file is indexed.

/usr/include/dballe/core/ostream.h is in libdballe-dev 7.21-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
33
34
35
36
#ifndef DBA_CORE_OSTREAM_H
#define DBA_CORE_OSTREAM_H

/** @file
 * Ostream output for dballe/core objects.
 *
 * This is intended to only be used for testing and debugging.
 */

#include <iosfwd>

namespace dballe {
struct Coords;
struct Date;
struct Time;
struct Datetime;
struct DatetimeRange;
struct LatRange;
struct LonRange;
struct Level;
struct Trange;
struct Ident;

std::ostream& operator<<(std::ostream& out, const Coords& c);
std::ostream& operator<<(std::ostream& out, const Date& dt);
std::ostream& operator<<(std::ostream& out, const Time& t);
std::ostream& operator<<(std::ostream& out, const Datetime& dt);
std::ostream& operator<<(std::ostream& out, const DatetimeRange& dtr);
std::ostream& operator<<(std::ostream& out, const LatRange& lr);
std::ostream& operator<<(std::ostream& out, const LonRange& lr);
std::ostream& operator<<(std::ostream& out, const Level& l);
std::ostream& operator<<(std::ostream& out, const Trange& l);
std::ostream& operator<<(std::ostream& out, const Ident& i);

}
#endif