00001 #define IN_TP_QT_HEADER
00002 #include "TelepathyQt/debug-receiver.h"
00003
00004 namespace Tp
00005 {
00006 namespace Client
00007 {
00008
00009 DebugInterface::DebugInterface(const QString& busName, const QString& objectPath, QObject *parent)
00010 : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00011 {
00012 }
00013
00014 DebugInterface::DebugInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00015 : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00016 {
00017 }
00018
00019 DebugInterface::DebugInterface(Tp::DBusProxy *proxy)
00020 : Tp::AbstractInterface(proxy, staticInterfaceName())
00021 {
00022 }
00023
00024 void DebugInterface::invalidate(Tp::DBusProxy *proxy,
00025 const QString &error, const QString &message)
00026 {
00027 disconnect(this, SIGNAL(NewDebugMessage(double, const QString&, uint, const QString&)), NULL, NULL);
00028
00029 Tp::AbstractInterface::invalidate(proxy, error, message);
00030 }
00031 }
00032 }