This file is indexed.

/usr/include/pbihdf/DatasetCollection.hpp is in libpbihdf-dev 0~20151014+gitbe5d1bf-2.

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
37
38
39
40
41
#ifndef _BLASR_DATASET_COLLECTION_HPP_
#define _BLASR_DATASET_COLLECTION_HPP_

#include <map>
#include <vector>
#include <string>
#include <iostream>
#include "HDFGroup.hpp"
#include "HDFData.hpp"


class DatasetCollection {
public:
    std::vector<std::string> fieldNames;
    std::map<std::string,bool> includedFields;
    std::map<std::string,bool> requiredFields;

    void MakeFieldRequired(std::string &fieldName); 

    void MakeFieldOptional(string &fieldName); 

    void InitializeAllFields(bool value); 

    void InitializeFields(std::vector<std::string> &fieldList); 

    void InitializeFields(std::vector<char*> &fieldList); 

    int IncludeField(std::string fieldName); 

    bool FieldIsIncluded(std::string fieldName); 

    bool ContainsField(std::string fieldName); 

    template <typename T_Dataset>
    bool InitializeDataset(HDFGroup &group, T_Dataset &dataset, std::string datasetName); 

};

#include "DatasetCollectionImpl.hpp"

#endif