diff options
Diffstat (limited to 'common/inspector.h')
-rw-r--r-- | common/inspector.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/inspector.h b/common/inspector.h index 5ee995e..a1f7c53 100644 --- a/common/inspector.h +++ b/common/inspector.h | |||
@@ -41,13 +41,19 @@ public: | |||
41 | 41 | ||
42 | KAsync::Job<void> processCommand(void const *command, size_t size); | 42 | KAsync::Job<void> processCommand(void const *command, size_t size); |
43 | 43 | ||
44 | void setSecret(const QString &s); | ||
45 | |||
44 | signals: | 46 | signals: |
45 | void notify(Notification); | 47 | void notify(Notification); |
46 | 48 | ||
47 | protected: | 49 | protected: |
50 | QString secret() const; | ||
48 | virtual KAsync::Job<void> inspect(int inspectionType, const QByteArray &inspectionId, const QByteArray &domainType, const QByteArray &entityId, const QByteArray &property, const QVariant &expectedValue); | 51 | virtual KAsync::Job<void> inspect(int inspectionType, const QByteArray &inspectionId, const QByteArray &domainType, const QByteArray &entityId, const QByteArray &property, const QVariant &expectedValue); |
49 | 52 | ||
50 | Sink::ResourceContext mResourceContext; | 53 | Sink::ResourceContext mResourceContext; |
54 | |||
55 | private: | ||
56 | QString mSecret; | ||
51 | }; | 57 | }; |
52 | 58 | ||
53 | } | 59 | } |