16fbf5d9cf23535734cac1a95c6c4778d2cc129a
[platform/upstream/dbus.git] / qt / qdbusabstractadaptor.h
1 /* -*- mode: 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 QDBUSABSTRACTADAPTOR_H
25 #define QDBUSABSTRACTADAPTOR_H
26
27 #include <QtCore/qobject.h>
28 #include "qdbusmacros.h"
29
30 class QDBusAbstractAdaptorPrivate;
31 class QDBUS_EXPORT QDBusAbstractAdaptor: public QObject
32 {
33     Q_OBJECT
34 protected:
35     QDBusAbstractAdaptor(QObject *parent);
36
37 public:
38     ~QDBusAbstractAdaptor();
39
40     Q_DECL_DEPRECATED QObject *object() const;
41
42 protected:
43     void setAutoRelaySignals(bool enable);
44
45 private:
46     friend class QDBusAbstractAdaptorPrivate;
47     QDBusAbstractAdaptorPrivate *d;
48 };
49
50 #endif