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 /common/query.h | |
parent | 438c74630e5f8c9a46d00b991f5cb8ecd479dafe (diff) | |
download | sink-89b6f63bab839ab0504cd3067f0389afe4dc47e3.tar.gz sink-89b6f63bab839ab0504cd3067f0389afe4dc47e3.zip |
Implement debug stream operators for query.
Diffstat (limited to 'common/query.h')
-rw-r--r-- | common/query.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/query.h b/common/query.h index 4a73357..925b014 100644 --- a/common/query.h +++ b/common/query.h | |||
@@ -467,7 +467,9 @@ private: | |||
467 | 467 | ||
468 | } | 468 | } |
469 | 469 | ||
470 | QDebug SINK_EXPORT operator<<(QDebug dbg, const Sink::Query::Comparator &c); | 470 | QDebug SINK_EXPORT operator<<(QDebug dbg, const Sink::QueryBase::Comparator &); |
471 | QDebug SINK_EXPORT operator<<(QDebug dbg, const Sink::QueryBase &); | ||
472 | QDebug SINK_EXPORT operator<<(QDebug dbg, const Sink::Query &); | ||
471 | QDataStream & SINK_EXPORT operator<< (QDataStream &stream, const Sink::QueryBase &query); | 473 | QDataStream & SINK_EXPORT operator<< (QDataStream &stream, const Sink::QueryBase &query); |
472 | QDataStream & SINK_EXPORT operator>> (QDataStream &stream, Sink::QueryBase &query); | 474 | QDataStream & SINK_EXPORT operator>> (QDataStream &stream, Sink::QueryBase &query); |
473 | 475 | ||