This file is indexed.

/usr/include/libdbustest-1/libdbustest/bustle.h is in libdbustest1-dev 15.04.0+15.10.20151002-0ubuntu1.

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
/*
Copyright 2012 Canonical Ltd.

Authors:
    Ted Gould <ted@canonical.com>

This program is free software: you can redistribute it and/or modify it 
under the terms of the GNU General Public License version 3, as published 
by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but 
WITHOUT ANY WARRANTY; without even the implied warranties of 
MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along 
with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __DBUS_TEST_BUSTLE_H__
#define __DBUS_TEST_BUSTLE_H__

#include <glib.h>
#include <glib-object.h>

G_BEGIN_DECLS

#define DBUS_TEST_TYPE_BUSTLE            (dbus_test_bustle_get_type ())
#define DBUS_TEST_BUSTLE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), DBUS_TEST_TYPE_BUSTLE, DbusTestBustle))
#define DBUS_TEST_BUSTLE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), DBUS_TEST_TYPE_BUSTLE, DbusTestBustleClass))
#define DBUS_TEST_IS_BUSTLE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DBUS_TEST_TYPE_BUSTLE))
#define DBUS_TEST_IS_BUSTLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DBUS_TEST_TYPE_BUSTLE))
#define DBUS_TEST_BUSTLE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), DBUS_TEST_TYPE_BUSTLE, DbusTestBustleClass))

typedef struct _DbusTestBustle        DbusTestBustle;
typedef struct _DbusTestBustleClass   DbusTestBustleClass;
typedef struct _DbusTestBustlePrivate DbusTestBustlePrivate;

struct _DbusTestBustleClass {
	DbusTestTaskClass parent_class;
};

struct _DbusTestBustle {
	DbusTestTask parent;
	DbusTestBustlePrivate * priv;
};

GType dbus_test_bustle_get_type (void);

DbusTestBustle * dbus_test_bustle_new (const gchar * filename);
void dbus_test_bustle_set_executable (DbusTestBustle * bustle, const gchar * executable);

G_END_DECLS

#endif