85256f299968d965a7557f9712edcf8d46ceab35
[vicar] / src / vicar-daemon / src / vicardbusadaptor.h
1 /*
2  * This file was generated by qdbusxml2cpp version 0.7
3  * Command line was: qdbusxml2cpp -c VicarDbusAdaptor -a vicardbusadaptor.h:vicardbusadaptor.cpp org.maemo.vicar.xml
4  *
5  * qdbusxml2cpp is Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
6  *
7  * This is an auto-generated file.
8  * This file may have been hand-edited. Look for HAND-EDIT comments
9  * before re-generating it.
10  */
11
12 #ifndef VICARDBUSADAPTOR_H_1278741980
13 #define VICARDBUSADAPTOR_H_1278741980
14
15 #include <QtCore/QObject>
16 #include <QtDBus/QtDBus>
17 class QByteArray;
18 template<class T> class QList;
19 template<class Key, class Value> class QMap;
20 class QString;
21 class QStringList;
22 class QVariant;
23
24 /*
25  * Adaptor class for interface org.maemo.vicar
26  */
27 class VicarDbusAdaptor: public QDBusAbstractAdaptor
28 {
29     Q_OBJECT
30     Q_CLASSINFO("D-Bus Interface", "org.maemo.vicar")
31     Q_CLASSINFO("D-Bus Introspection", ""
32 "  <interface name=\"org.maemo.vicar\">\n"
33 "    <method name=\"startOutgoingCallMonitor\">\n"
34 "      <arg direction=\"out\" type=\"b\"/>\n"
35 "    </method>\n"
36 "    <method name=\"stopOutgoingCallMonitor\">\n"
37 "      <arg direction=\"out\" type=\"b\"/>\n"
38 "    </method>\n"
39 "    <method name=\"isRunning\">\n"
40 "      <arg direction=\"out\" type=\"b\"/>\n"
41 "    </method>\n"
42 "    <method name=\"callInternationalNumber\">\n"
43 "      <arg direction=\"in\" type=\"s\" name=\"number\"/>\n"
44 "      <arg direction=\"out\" type=\"s\"/>\n"
45 "    </method>\n"
46 "  </interface>\n"
47         "")
48 public:
49     VicarDbusAdaptor(QObject *parent);
50     virtual ~VicarDbusAdaptor();
51
52 public: // PROPERTIES
53 public Q_SLOTS: // METHODS
54     QString callInternationalNumber(const QString &number);
55     bool isRunning();
56     bool startOutgoingCallMonitor();
57     bool stopOutgoingCallMonitor();
58 Q_SIGNALS: // SIGNALS
59 };
60
61 #endif