00001 /* 00002 * This file is part of signon 00003 * 00004 * Copyright (C) 2011 Nokia Corporation. 00005 * Copyright (C) 2012-2016 Canonical Ltd. 00006 * 00007 * Contact: Alberto Mardegan <alberto.mardegan@canonical.com> 00008 * 00009 * This library is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU Lesser General Public License 00011 * version 2.1 as published by the Free Software Foundation. 00012 * 00013 * This library is distributed in the hope that it will be useful, but 00014 * WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License along with this library; if not, write to the Free Software 00020 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 00021 * 02110-1301 USA 00022 */ 00023 00024 #ifndef SIGNON_DBUSINTERFACE_H 00025 #define SIGNON_DBUSINTERFACE_H 00026 00027 #include <QDBusAbstractInterface> 00028 00029 namespace SignOn { 00030 00031 /* This is a version of QDBusInterface which doesn't do the blocking 00032 * introspection. 00033 */ 00034 class DBusInterface: public QDBusAbstractInterface 00035 { 00036 public: 00037 DBusInterface(const QString &service, 00038 const QString &path, 00039 const char *interface, 00040 const QDBusConnection &connection, 00041 QObject *parent = 0); 00042 virtual ~DBusInterface(); 00043 00044 bool connect(const char *name, QObject *receiver, const char *slot); 00045 }; 00046 00047 } 00048 00049 #endif // SIGNON_DBUSINTERFACE_H 00050