This file is indexed.

/usr/share/doc/libtelepathy-glib-doc/examples/cm/extended/connection-manager.h is in libtelepathy-glib-doc 0.18.0-1ubuntu1.

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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * manager.h - header for an example connection manager
 * Copyright (C) 2007 Collabora Ltd.
 *
 * Copying and distribution of this file, with or without modification,
 * are permitted in any medium without royalty provided the copyright
 * notice and this notice are preserved.
 */

#ifndef __EXAMPLE_EXTENDED_CONNECTION_MANAGER_H__
#define __EXAMPLE_EXTENDED_CONNECTION_MANAGER_H__

#include <glib-object.h>
#include <telepathy-glib/base-connection-manager.h>

G_BEGIN_DECLS

typedef struct _ExampleExtendedConnectionManager
    ExampleExtendedConnectionManager;
typedef struct _ExampleExtendedConnectionManagerPrivate
    ExampleExtendedConnectionManagerPrivate;
typedef struct _ExampleExtendedConnectionManagerClass
    ExampleExtendedConnectionManagerClass;
typedef struct _ExampleExtendedConnectionManagerClassPrivate
    ExampleExtendedConnectionManagerClassPrivate;

struct _ExampleExtendedConnectionManagerClass {
    TpBaseConnectionManagerClass parent_class;

    ExampleExtendedConnectionManagerClassPrivate *priv;
};

struct _ExampleExtendedConnectionManager {
    TpBaseConnectionManager parent;

    ExampleExtendedConnectionManagerPrivate *priv;
};

GType example_extended_connection_manager_get_type (void);

/* TYPE MACROS */
#define EXAMPLE_TYPE_EXTENDED_CONNECTION_MANAGER \
  (example_extended_connection_manager_get_type ())
#define EXAMPLE_EXTENDED_CONNECTION_MANAGER(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST((obj), \
                              EXAMPLE_TYPE_EXTENDED_CONNECTION_MANAGER, \
                              ExampleExtendedConnectionManager))
#define EXAMPLE_EXTENDED_CONNECTION_MANAGER_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST((klass), \
                           EXAMPLE_TYPE_EXTENDED_CONNECTION_MANAGER, \
                           ExampleExtendedConnectionManagerClass))
#define EXAMPLE_IS_EXTENDED_CONNECTION_MANAGER(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
                              EXAMPLE_TYPE_EXTENDED_CONNECTION_MANAGER))
#define EXAMPLE_IS_EXTENDED_CONNECTION_MANAGER_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE((klass), \
                           EXAMPLE_TYPE_EXTENDED_CONNECTION_MANAGER))
#define EXAMPLE_EXTENDED_CONNECTION_MANAGER_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
                              EXAMPLE_TYPE_EXTENDED_CONNECTION_MANAGER, \
                              ExampleExtendedConnectionManagerClass))

G_END_DECLS

#endif