Home · Modules · All Classes · All Namespaces
cli-channel-dispatcher-body.hpp
1 #define IN_TP_QT_HEADER
2 #include "TelepathyQt/channel-dispatcher.h"
3 
4 namespace Tp
5 {
6 namespace Client
7 {
8 
9 ChannelDispatcherInterface::ChannelDispatcherInterface(const QString& busName, const QString& objectPath, QObject *parent)
10  : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
11 {
12 }
13 
14 ChannelDispatcherInterface::ChannelDispatcherInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
15  : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
16 {
17 }
18 
20  : Tp::AbstractInterface(proxy, staticInterfaceName())
21 {
22 }
23 
25  const QString &error, const QString &message)
26 {
27 
28  Tp::AbstractInterface::invalidate(proxy, error, message);
29 }
30 
31 ChannelDispatcherInterfaceMessages1Interface::ChannelDispatcherInterfaceMessages1Interface(const QString& busName, const QString& objectPath, QObject *parent)
32  : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
33 {
34 }
35 
36 ChannelDispatcherInterfaceMessages1Interface::ChannelDispatcherInterfaceMessages1Interface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
37  : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
38 {
39 }
40 
42  : Tp::AbstractInterface(proxy, staticInterfaceName())
43 {
44 }
45 
47  : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
48 {
49 }
50 
52  : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
53 {
54 }
55 
57  const QString &error, const QString &message)
58 {
59 
60  Tp::AbstractInterface::invalidate(proxy, error, message);
61 }
62 }
63 }
virtual void invalidate(Tp::DBusProxy *proxy, const QString &error, const QString &message)
Definition: abstract-interface.cpp:101
ChannelDispatcherInterface(const QString &busName, const QString &objectPath, QObject *parent=0)
Definition: cli-channel-dispatcher-body.hpp:9
The AbstractInterface class is the base class for all client side D-Bus interfaces,...
Definition: abstract-interface.h:42
ChannelDispatcherInterfaceMessages1Interface(const QString &busName, const QString &objectPath, QObject *parent=0)
Definition: cli-channel-dispatcher-body.hpp:31
Definition: cli-channel-dispatcher.h:44
virtual void invalidate(Tp::DBusProxy *, const QString &, const QString &)
Definition: cli-channel-dispatcher-body.hpp:24
Definition: abstract-adaptor.cpp:31
virtual void invalidate(Tp::DBusProxy *, const QString &, const QString &)
Definition: cli-channel-dispatcher-body.hpp:56
The DBusProxy class is a base class representing a remote object available over D-Bus.
Definition: dbus-proxy.h:42