This file is indexed.

/usr/include/ibus-qt/qibusconfigadaptor.h is in libibus-qt-dev 1.3.2-2.

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
66
67
68
69
/*
 * This file was generated by qdbusxml2cpp version 0.7
 * Command line was: qdbusxml2cpp -a qibusconfigadaptor -c IBusConfigAdaptor -v org.freedesktop.IBus.Config.xml org.freedesktop.IBus.Config
 *
 * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 *
 * This is an auto-generated file.
 * This file may have been hand-edited. Look for HAND-EDIT comments
 * before re-generating it.
 */

#ifndef QIBUSCONFIGADAPTOR_H_1268725630
#define QIBUSCONFIGADAPTOR_H_1268725630

#include <QtCore/QObject>
#include <QtDBus/QtDBus>
class QByteArray;
template<class T> class QList;
template<class Key, class Value> class QMap;
class QString;
class QStringList;
class QVariant;

/*
 * Adaptor class for interface org.freedesktop.IBus.Config
 */
class IBusConfigAdaptor: public QDBusAbstractAdaptor
{
    Q_OBJECT
    Q_CLASSINFO("D-Bus Interface", "org.freedesktop.IBus.Config")
    Q_CLASSINFO("D-Bus Introspection", ""
"  <interface name=\"org.freedesktop.IBus.Config\">\n"
"    <method name=\"Destroy\"/>\n"
"    <signal name=\"ValueChanged\">\n"
"      <arg type=\"s\" name=\"section\"/>\n"
"      <arg type=\"s\" name=\"name\"/>\n"
"      <arg type=\"v\" name=\"value\"/>\n"
"    </signal>\n"
"    <method name=\"SetValue\">\n"
"      <arg direction=\"in\" type=\"s\" name=\"section\"/>\n"
"      <arg direction=\"in\" type=\"s\" name=\"name\"/>\n"
"      <arg direction=\"in\" type=\"v\" name=\"value\"/>\n"
"    </method>\n"
"    <method name=\"GetValue\">\n"
"      <arg direction=\"in\" type=\"s\" name=\"section\"/>\n"
"      <arg direction=\"in\" type=\"s\" name=\"name\"/>\n"
"      <arg direction=\"out\" type=\"v\"/>\n"
"    </method>\n"
"    <method name=\"Unset\">\n"
"      <arg direction=\"in\" type=\"s\" name=\"section\"/>\n"
"      <arg direction=\"in\" type=\"s\" name=\"name\"/>\n"
"    </method>\n"
"  </interface>\n"
        "")
public:
    IBusConfigAdaptor(QObject *parent);
    virtual ~IBusConfigAdaptor();

public: // PROPERTIES
public Q_SLOTS: // METHODS
    void Destroy();
    QDBusVariant GetValue(const QString &section, const QString &name);
    void SetValue(const QString &section, const QString &name, const QDBusVariant &value);
    void Unset(const QString &section, const QString &name);
Q_SIGNALS: // SIGNALS
    void ValueChanged(const QString &section, const QString &name, const QDBusVariant &value);
};

#endif