diff options
Diffstat (limited to 'common/query.h')
-rw-r--r-- | common/query.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/query.h b/common/query.h index 50e93de..8e9050d 100644 --- a/common/query.h +++ b/common/query.h | |||
@@ -296,10 +296,11 @@ class SINK_EXPORT Query : public QueryBase | |||
296 | public: | 296 | public: |
297 | enum Flag | 297 | enum Flag |
298 | { | 298 | { |
299 | NoFlags = 0, | ||
299 | /** Leave the query running and continuously update the result set. */ | 300 | /** Leave the query running and continuously update the result set. */ |
300 | LiveQuery, | 301 | LiveQuery = 1, |
301 | /** Run the query synchronously. */ | 302 | /** Run the query synchronously. */ |
302 | SynchronousQuery | 303 | SynchronousQuery = 2 |
303 | }; | 304 | }; |
304 | Q_DECLARE_FLAGS(Flags, Flag) | 305 | Q_DECLARE_FLAGS(Flags, Flag) |
305 | 306 | ||