diff options
Diffstat (limited to 'client/clientapi.h')
-rw-r--r-- | client/clientapi.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/client/clientapi.h b/client/clientapi.h index 59efe32..592fa48 100644 --- a/client/clientapi.h +++ b/client/clientapi.h | |||
@@ -185,8 +185,14 @@ using namespace async; | |||
185 | class Query | 185 | class Query |
186 | { | 186 | { |
187 | public: | 187 | public: |
188 | //Resources to search | 188 | //Could also be a propertyFilter |
189 | QSet<QString> resources; | 189 | QStringList resources; |
190 | //Could also be a propertyFilter | ||
191 | QStringList ids; | ||
192 | //Filters to apply | ||
193 | QHash<QString, QVariant> propertyFilter; | ||
194 | //Properties to retrieve | ||
195 | QSet<QString> requestedProperties; | ||
190 | }; | 196 | }; |
191 | 197 | ||
192 | 198 | ||