qt5
Last change
on this file since 17cb895 was
17cb895,
checked in by hanzes <hanzes@…>, 12 years ago
|
Alarm modifications
|
-
Property mode set to
100644
|
File size:
399 bytes
|
Line | |
---|
1 | #ifndef ALARM_DBUS_H |
---|
2 | #define ALARM_DBUS_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 // ALARM_DBUS_H |
---|
Note: See
TracBrowser
for help on using the repository browser.