This file is indexed.

/usr/include/bobcat/tablelines is in libbobcat-dev 2.20.01-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 INCLUDED_TABLELINES_
#define INCLUDED_TABLELINES_

#include <ostream>
#include <bobcat/tablesupport>

namespace FBB
{

class TableLines: public TableSupport
{
    public:
        TableLines() = default;
        TableLines(TableLines &&tmp);
    
        TableLines &operator=(TableLines &&tmp);

    private:
        virtual void v_hline(size_t row) const;

        static void outLine(Field const &field,  std::ostream &out);
};

inline TableLines::TableLines(TableLines &&tmp)
:
    TableSupport(std::move(tmp))
{}

inline TableLines &TableLines::operator=(TableLines &&tmp)
{
    *this = std::move(tmp);
    return *this;
}

} // FBB        
#endif