reorganized bluetooth-qt and added declarative plugin
[profile/ivi/bluetooth-qt.git] / bluetooth-qt / obex / obexagent.h
1 /*
2  * This file was generated by qdbusxml2cpp version 0.7
3  * Command line was: qdbusxml2cpp -c ObexAgentAdaptor -a obexagent.h:obexagent.cpp agent.xml
4  *
5  * qdbusxml2cpp is Copyright (C) 2011 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 OBEXAGENT_H_1306341758
13 #define OBEXAGENT_H_1306341758
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.openobex.Agent
26  */
27 class ObexAgentAdaptor: public QDBusAbstractAdaptor
28 {
29     Q_OBJECT
30     Q_CLASSINFO("D-Bus Interface", "org.openobex.Agent")
31     Q_CLASSINFO("D-Bus Introspection", ""
32 "  <interface name=\"org.openobex.Agent\">\n"
33 "    <method name=\"Release\"/>\n"
34 "    <method name=\"Progress\">\n"
35 "      <arg direction=\"in\" type=\"o\" name=\"path\"/>\n"
36 "      <arg direction=\"in\" type=\"t\" name=\"transferred\"/>\n"
37 "    </method>\n"
38 "    <method name=\"Complete\">\n"
39 "      <arg direction=\"in\" type=\"o\" name=\"path\"/>\n"
40 "    </method>\n"
41 "    <method name=\"Error\">\n"
42 "      <arg direction=\"in\" type=\"o\" name=\"path\"/>\n"
43 "      <arg direction=\"in\" type=\"s\" name=\"error\"/>\n"
44 "    </method>\n"
45 "  </interface>\n"
46         "")
47 public:
48     ObexAgentAdaptor(QObject *parent);
49     virtual ~ObexAgentAdaptor();
50
51 public: // PROPERTIES
52 public Q_SLOTS: // METHODS
53     void Complete(const QDBusObjectPath &path);
54     void Error(const QDBusObjectPath &path, const QString &error);
55     void Progress(const QDBusObjectPath &path, qulonglong transferred);
56     void Release();
57 Q_SIGNALS: // SIGNALS
58 };
59
60 #endif