blob: 9d8e7a6d27c4d31c43111aea0201224cc80b42a3 (
plain)
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
|
/*
* This file was generated by dbusxml2cpp version 0.6
* Command line was: dbusxml2cpp -a chat_adaptor.h: com.trolltech.chat.xml
*
* dbusxml2cpp is Copyright (C) 2009 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 CHAT_ADAPTOR_H_142741156243605
#define CHAT_ADAPTOR_H_142741156243605
#include <QtCore/QObject>
#include <QtDBus/QtDBus>
QT_BEGIN_NAMESPACE
class QByteArray;
template<class T> class QList;
template<class Key, class Value> class QMap;
class QString;
class QStringList;
class QVariant;
QT_END_NAMESPACE
/*
* Adaptor class for interface com.trolltech.chat
*/
class ChatAdaptor: public QDBusAbstractAdaptor
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "com.trolltech.chat")
Q_CLASSINFO("D-Bus Introspection", ""
" <interface name=\"com.trolltech.chat\" >\n"
" <signal name=\"message\" >\n"
" <arg direction=\"out\" type=\"s\" name=\"nickname\" />\n"
" <arg direction=\"out\" type=\"s\" name=\"text\" />\n"
" </signal>\n"
" <signal name=\"action\" >\n"
" <arg direction=\"out\" type=\"s\" name=\"nickname\" />\n"
" <arg direction=\"out\" type=\"s\" name=\"text\" />\n"
" </signal>\n"
" </interface>\n"
"")
public:
ChatAdaptor(QObject *parent);
virtual ~ChatAdaptor();
public: // PROPERTIES
public Q_SLOTS: // METHODS
Q_SIGNALS: // SIGNALS
void action(const QString &nickname, const QString &text);
void message(const QString &nickname, const QString &text);
};
#endif
|