This file is indexed.

/usr/include/xbase64/xbnode.h is in libxbase64-dev 3.1.2-12.

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
#ifndef xbNode_h
#define xbNode_h

class xbNodeLink
{
  public:
    xbNodeLink(): nextNode_(0) {}
    void AddNode(xbNodeLink* node);
    xbNodeLink* GetNext() {return nextNode_;}

  private:
    xbNodeLink(const xbNodeLink&);
    xbNodeLink& operator=(const xbNodeLink&);

  private:
    xbNodeLink* nextNode_;
};

#endif