diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-04-18 10:26:47 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-04-18 12:15:24 +0200 |
commit | e2857def8e67c3a95656f9d4737beba93a38c53a (patch) | |
tree | 2e824f5e185b5273728edaa314ebbbbe7f97f68e /common/clientapi.h | |
parent | bbb7c128488d0bc1dbedd4fe9f8a7a4de778705b (diff) | |
download | sink-e2857def8e67c3a95656f9d4737beba93a38c53a.tar.gz sink-e2857def8e67c3a95656f9d4737beba93a38c53a.zip |
Moved generic part of load to GenericFacade
Diffstat (limited to 'common/clientapi.h')
-rw-r--r-- | common/clientapi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/clientapi.h b/common/clientapi.h index c2b9493..88bc38c 100644 --- a/common/clientapi.h +++ b/common/clientapi.h | |||
@@ -365,7 +365,7 @@ public: | |||
365 | virtual Async::Job<void> modify(const DomainType &domainObject) = 0; | 365 | virtual Async::Job<void> modify(const DomainType &domainObject) = 0; |
366 | virtual Async::Job<void> remove(const DomainType &domainObject) = 0; | 366 | virtual Async::Job<void> remove(const DomainType &domainObject) = 0; |
367 | //TODO remove from public API | 367 | //TODO remove from public API |
368 | virtual Async::Job<qint64> load(const Query &query, const std::function<void(const typename DomainType::Ptr &)> &resultCallback) = 0; | 368 | // virtual Async::Job<qint64> load(const Query &query, const std::function<void(const typename DomainType::Ptr &)> &resultCallback) = 0; |
369 | virtual Async::Job<void> load(const Query &query, const QSharedPointer<ResultProvider<typename DomainType::Ptr> > &resultProvider) { return Async::null<void>(); }; | 369 | virtual Async::Job<void> load(const Query &query, const QSharedPointer<ResultProvider<typename DomainType::Ptr> > &resultProvider) { return Async::null<void>(); }; |
370 | }; | 370 | }; |
371 | 371 | ||