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 68463cd..0808432 100644 --- a/common/query.h +++ b/common/query.h | |||
@@ -195,13 +195,13 @@ public: | |||
195 | return *this; | 195 | return *this; |
196 | } | 196 | } |
197 | 197 | ||
198 | Query(const ApplicationDomain::Entity &value) : limit(0), liveQuery(false), synchronousQuery(false) | 198 | Query(const ApplicationDomain::Entity &value) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false) |
199 | { | 199 | { |
200 | ids << value.identifier(); | 200 | ids << value.identifier(); |
201 | resources << value.resourceInstanceIdentifier(); | 201 | resources << value.resourceInstanceIdentifier(); |
202 | } | 202 | } |
203 | 203 | ||
204 | Query(Flags flags = Flags()) : limit(0), liveQuery(false), synchronousQuery(false) | 204 | Query(Flags flags = Flags()) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false) |
205 | { | 205 | { |
206 | } | 206 | } |
207 | 207 | ||
@@ -236,6 +236,7 @@ public: | |||
236 | int limit; | 236 | int limit; |
237 | bool liveQuery; | 237 | bool liveQuery; |
238 | bool synchronousQuery; | 238 | bool synchronousQuery; |
239 | bool threadLeaderOnly; | ||
239 | }; | 240 | }; |
240 | } | 241 | } |
241 | 242 | ||