diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-11-07 21:48:44 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-11-07 21:48:44 +0100 |
commit | 89b6f63bab839ab0504cd3067f0389afe4dc47e3 (patch) | |
tree | 62c527983d63827bb722010ea8c59d5af0e5a879 /tests/testimplementations.h | |
parent | 438c74630e5f8c9a46d00b991f5cb8ecd479dafe (diff) | |
download | sink-89b6f63bab839ab0504cd3067f0389afe4dc47e3.tar.gz sink-89b6f63bab839ab0504cd3067f0389afe4dc47e3.zip |
Implement debug stream operators for query.
Diffstat (limited to 'tests/testimplementations.h')
-rw-r--r-- | tests/testimplementations.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/testimplementations.h b/tests/testimplementations.h index cf7a3da..111c884 100644 --- a/tests/testimplementations.h +++ b/tests/testimplementations.h | |||
@@ -70,6 +70,10 @@ public: | |||
70 | { | 70 | { |
71 | return KAsync::null<void>(); | 71 | return KAsync::null<void>(); |
72 | } | 72 | } |
73 | KAsync::Job<void> synchronizeResource(const Sink::QueryBase &) Q_DECL_OVERRIDE | ||
74 | { | ||
75 | return KAsync::null<void>(); | ||
76 | } | ||
73 | 77 | ||
74 | public slots: | 78 | public slots: |
75 | void open() Q_DECL_OVERRIDE | 79 | void open() Q_DECL_OVERRIDE |
@@ -111,7 +115,7 @@ public: | |||
111 | { | 115 | { |
112 | } | 116 | } |
113 | 117 | ||
114 | KAsync::Job<void> synchronizeWithSource() Q_DECL_OVERRIDE | 118 | KAsync::Job<void> synchronizeWithSource(const Sink::QueryBase &query) Q_DECL_OVERRIDE |
115 | { | 119 | { |
116 | return KAsync::null<void>(); | 120 | return KAsync::null<void>(); |
117 | } | 121 | } |