| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | #include "deviceeventcontroller_adaptor.h" | - |
| 12 | #include <QtCore/QMetaObject> | - |
| 13 | #include <QtCore/QByteArray> | - |
| 14 | #include <QtCore/QList> | - |
| 15 | #include <QtCore/QMap> | - |
| 16 | #include <QtCore/QString> | - |
| 17 | #include <QtCore/QStringList> | - |
| 18 | #include <QtCore/QVariant> | - |
| 19 | | - |
| 20 | | - |
| 21 | | - |
| 22 | | - |
| 23 | | - |
| 24 | DeviceEventControllerAdaptor::DeviceEventControllerAdaptor(QObject *parent) | - |
| 25 | : QDBusAbstractAdaptor(parent) | - |
| 26 | { | - |
| 27 | | - |
| 28 | setAutoRelaySignals(true); | - |
| 29 | } never executed: end of block | 0 |
| 30 | | - |
| 31 | DeviceEventControllerAdaptor::~DeviceEventControllerAdaptor() | - |
| 32 | { | - |
| 33 | | - |
| 34 | } | - |
| 35 | | - |
| 36 | void DeviceEventControllerAdaptor::NotifyListenersAsync(const QSpiDeviceEvent &event) | - |
| 37 | { | - |
| 38 | | - |
| 39 | QMetaObject::invokeMethod(parent(), "NotifyListenersAsync", Q_ARG(QSpiDeviceEvent, event)); | - |
| 40 | } never executed: end of block | 0 |
| 41 | | - |
| 42 | bool DeviceEventControllerAdaptor::NotifyListenersSync(const QSpiDeviceEvent &event) | - |
| 43 | { | - |
| 44 | | - |
| 45 | bool out0; | - |
| 46 | QMetaObject::invokeMethod(parent(), "NotifyListenersSync", Q_RETURN_ARG(bool, out0), Q_ARG(QSpiDeviceEvent, event)); | - |
| 47 | return out0; never executed: return out0; | 0 |
| 48 | } | - |
| 49 | | - |
| | |