diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-05-24 23:43:57 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-05-24 23:43:57 +0200 |
commit | 02d36a5f58e9a23163426b8a5aacbe1564b16422 (patch) | |
tree | 2b4955ded38cbeec6442d52e509160939cd7b03e /common/resourceaccess.h | |
parent | 53df06854ffdcf164c195884783cadf8f53fea2c (diff) | |
download | sink-02d36a5f58e9a23163426b8a5aacbe1564b16422.tar.gz sink-02d36a5f58e9a23163426b8a5aacbe1564b16422.zip |
Pass in the inspection type
Diffstat (limited to 'common/resourceaccess.h')
-rw-r--r-- | common/resourceaccess.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/resourceaccess.h b/common/resourceaccess.h index b9eaacd..82aa4d3 100644 --- a/common/resourceaccess.h +++ b/common/resourceaccess.h | |||
@@ -67,7 +67,7 @@ public: | |||
67 | return KAsync::null<void>(); | 67 | return KAsync::null<void>(); |
68 | }; | 68 | }; |
69 | virtual KAsync::Job<void> | 69 | virtual KAsync::Job<void> |
70 | sendInspectionCommand(const QByteArray &inspectionId, const QByteArray &domainType, const QByteArray &entityId, const QByteArray &property, const QVariant &expecedValue) | 70 | sendInspectionCommand(int inspectionType, const QByteArray &inspectionId, const QByteArray &domainType, const QByteArray &entityId, const QByteArray &property, const QVariant &expecedValue) |
71 | { | 71 | { |
72 | return KAsync::null<void>(); | 72 | return KAsync::null<void>(); |
73 | }; | 73 | }; |
@@ -103,7 +103,7 @@ public: | |||
103 | KAsync::Job<void> sendDeleteCommand(const QByteArray &uid, qint64 revision, const QByteArray &resourceBufferType) Q_DECL_OVERRIDE; | 103 | KAsync::Job<void> sendDeleteCommand(const QByteArray &uid, qint64 revision, const QByteArray &resourceBufferType) Q_DECL_OVERRIDE; |
104 | KAsync::Job<void> sendRevisionReplayedCommand(qint64 revision) Q_DECL_OVERRIDE; | 104 | KAsync::Job<void> sendRevisionReplayedCommand(qint64 revision) Q_DECL_OVERRIDE; |
105 | KAsync::Job<void> | 105 | KAsync::Job<void> |
106 | sendInspectionCommand(const QByteArray &inspectionId, const QByteArray &domainType, const QByteArray &entityId, const QByteArray &property, const QVariant &expecedValue) Q_DECL_OVERRIDE; | 106 | sendInspectionCommand(int inspectionType,const QByteArray &inspectionId, const QByteArray &domainType, const QByteArray &entityId, const QByteArray &property, const QVariant &expecedValue) Q_DECL_OVERRIDE; |
107 | /** | 107 | /** |
108 | * Tries to connect to server, and returns a connected socket on success. | 108 | * Tries to connect to server, and returns a connected socket on success. |
109 | */ | 109 | */ |