qt5
Last change
on this file since 6831c6a was
6831c6a,
checked in by hanzes <hanzes@…>, 13 years ago
|
Alarm dbus connection added
|
-
Property mode set to
100644
|
File size:
414 bytes
|
Line | |
---|
1 | #ifndef SINGLE_INSTANCE_H |
---|
2 | #define SINGLE_INSTANCE_H |
---|
3 | |
---|
4 | #include <QObject> |
---|
5 | #include <QtDBus/QtDBus> |
---|
6 | |
---|
7 | class CAlarmDBus: public QObject |
---|
8 | { |
---|
9 | Q_OBJECT |
---|
10 | Q_CLASSINFO("D-Bus Interface", "org.fosdem.schedule") |
---|
11 | |
---|
12 | public: |
---|
13 | CAlarmDBus(QWidget * aParent); |
---|
14 | virtual ~CAlarmDBus(); |
---|
15 | |
---|
16 | public: // PROPERTIES |
---|
17 | public Q_SLOTS: // METHODS |
---|
18 | void Alarm(int aEventId); |
---|
19 | private: |
---|
20 | QWidget * mParent; |
---|
21 | }; |
---|
22 | |
---|
23 | |
---|
24 | #endif // SINGLE_INSTANCE_H |
---|
Note: See
TracBrowser
for help on using the repository browser.