Website updated.
[irwi] / ut / stubs / qdbusconnection.h
1 #ifndef _QDBUSCONNECTION_H_
2 #define _QDBUSCONNECTION_H_
3
4 #include <QDBusMessage>
5
6 class MsgHandler
7 {
8 public:
9     void send(QDBusMessage msg);
10
11 };
12
13 class QDBusConnection
14 {
15 public:
16     static MsgHandler &systemBus();
17     static QList<QDBusMessage> sentMessages;
18
19 private:
20     static MsgHandler m_msgHandler;
21 };
22
23 #endif // _QDBUSCONNECTION_H_
24