This file is indexed.

/usr/include/pbseq/alignment/algorithms/alignment/sdp/SDPColumn.hpp is in libblasr-dev 0~20161219-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
#ifndef _BLASR_SDP_COLUMN_HPP_
#define _BLASR_SDP_COLUMN_HPP_

class SDPColumn {
 public:
	int col;
	int optFragment;
    SDPColumn() : col(0), optFragment(0) {}
    int operator<(const SDPColumn & rhs) const {
        return col < rhs.col;
    }
    int operator<(const int y) const {
        return col < y;
    }
    int operator==(const SDPColumn &rhs) const {
        return col == rhs.col;
    }
    int operator>(const SDPColumn &rhs) const {
        return (!(*this < rhs) && !(*this == rhs));
    }
};

#endif // _BLASR_SDP_COLUMN_HPP_