* qt/: Update to Subversion r548032.
[platform/upstream/dbus.git] / qt / src / qdbusinterface.h
1 /* -*- C++ -*-
2  *
3  * Copyright (C) 2006 Trolltech AS. All rights reserved.
4  *    Author: Thiago Macieira <thiago.macieira@trolltech.com>
5  *
6  * Licensed under the Academic Free License version 2.1
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software Foundation,
20  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  *
22  */
23
24 #ifndef QDBUSINTERFACE_H
25 #define QDBUSINTERFACE_H
26
27 #include "qdbusabstractinterface.h"
28
29 class QDBusInterfacePrivate;
30 class QDBUS_EXPORT QDBusInterface: public QDBusAbstractInterface
31 {
32     friend class QDBusConnection;
33 private:
34     QDBusInterface(QDBusInterfacePrivate *p);
35     
36 public:
37     ~QDBusInterface();
38     
39     virtual const QMetaObject *metaObject() const;
40     virtual void *qt_metacast(const char *);
41     virtual int qt_metacall(QMetaObject::Call, int, void **);
42
43 private:
44     Q_DECLARE_PRIVATE(QDBusInterface)
45     Q_DISABLE_COPY(QDBusInterface)
46 };
47
48 struct QDBUS_EXPORT QDBusInterfacePtr
49 {
50     QDBusInterfacePtr(QDBusInterface *iface) : d(iface) { }
51     QDBusInterfacePtr(QDBusConnection &conn, const QString &service, const QString &path,
52              const QString &interface = QString());
53     QDBusInterfacePtr(const QString &service, const QString &path, const QString &interface = QString());
54     ~QDBusInterfacePtr() { delete d; }
55
56     QDBusInterface *interface() { return d; }
57     QDBusInterface *operator->() { return d; }
58 private:
59     QDBusInterface *const d;
60     Q_DISABLE_COPY(QDBusInterfacePtr)
61 };
62
63 #endif