0495ada1a0bcfe62278d0e4b0f602f812c12018b
[platform/upstream/dbus.git] / qt / 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     virtual const QMetaObject *metaObject() const;
39     virtual void *qt_metacast(const char *);
40     virtual int qt_metacall(QMetaObject::Call, int, void **);
41
42 private:
43     Q_DECLARE_PRIVATE(QDBusInterface);
44 };
45
46 #endif