My Project
dbusinterface.h
1 /*
2  * This file is part of signon
3  *
4  * Copyright (C) 2011 Nokia Corporation.
5  * Copyright (C) 2012-2016 Canonical Ltd.
6  *
7  * Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * version 2.1 as published by the Free Software Foundation.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  */
23 
24 #ifndef SIGNON_DBUSINTERFACE_H
25 #define SIGNON_DBUSINTERFACE_H
26 
27 #include <QDBusAbstractInterface>
28 
29 namespace SignOn {
30 
31 /* This is a version of QDBusInterface which doesn't do the blocking
32  * introspection.
33  */
34 class DBusInterface: public QDBusAbstractInterface
35 {
36 public:
37  DBusInterface(const QString &service,
38  const QString &path,
39  const char *interface,
40  const QDBusConnection &connection,
41  QObject *parent = 0);
42  virtual ~DBusInterface();
43 
44  bool connect(const char *name, QObject *receiver, const char *slot);
45 };
46 
47 }
48 
49 #endif // SIGNON_DBUSINTERFACE_H
50