This file is indexed.

/usr/include/dballe/db/v6/cursor.h is in libdballe-dev 7.7-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
#ifndef DBA_DB_V6_CURSOR_H
#define DBA_DB_V6_CURSOR_H

#include <dballe/db/db.h>
#include <memory>

namespace dballe {
namespace core {
struct Query;
}

namespace db {
namespace v6 {
namespace cursor {

std::unique_ptr<CursorStation> run_station_query(DB& db, const core::Query& query, bool explain);
std::unique_ptr<CursorStationData> run_station_data_query(DB& db, const core::Query& query, bool explain);
std::unique_ptr<CursorData> run_data_query(DB& db, const core::Query& query, bool explain);
std::unique_ptr<CursorSummary> run_summary_query(DB& db, const core::Query& query, bool explain);
void run_delete_query(DB& db, const core::Query& query, bool station_vars, bool explain);

}
}
}
}
#endif