This file is indexed.

/usr/include/glibmm-2.4/glibmm/private/object_p.h is in libglibmm-2.4-dev 2.32.1-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
// -*- c++ -*-

#ifndef _GLIBMM_OBJECT_P_H
#define _GLIBMM_OBJECT_P_H

#include <glibmm/class.h>

namespace Glib
{

class Object_Class : public Glib::Class
{
public:
  typedef Object       CppObjectType;
  typedef GObject      BaseObjectType;
  typedef GObjectClass BaseClassType;

  static void class_init_function(void* g_class, void* class_data);

  const Glib::Class& init();

  static Glib::Object* wrap_new(GObject*);
};

} // namespace Glib

#endif /* _GLIBMM_OBJECT_P_H */