diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-04-18 12:19:02 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-04-18 12:19:02 +0200 |
commit | 462d2999f0171452ecb6fafb52c7244008f536eb (patch) | |
tree | 9c9d5f23fbeb305cbb6bc806ba69f3a49875abd8 | |
parent | 5ea80b625764810a4b741041ae5dcbb6f5af3805 (diff) | |
download | sink-462d2999f0171452ecb6fafb52c7244008f536eb.tar.gz sink-462d2999f0171452ecb6fafb52c7244008f536eb.zip |
cleanup
-rw-r--r-- | common/clientapi.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/common/clientapi.h b/common/clientapi.h index 88bc38c..f9290af 100644 --- a/common/clientapi.h +++ b/common/clientapi.h | |||
@@ -364,9 +364,7 @@ public: | |||
364 | virtual Async::Job<void> create(const DomainType &domainObject) = 0; | 364 | virtual Async::Job<void> create(const DomainType &domainObject) = 0; |
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 | virtual Async::Job<void> load(const Query &query, const QSharedPointer<ResultProvider<typename DomainType::Ptr> > &resultProvider) = 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>(); }; | ||
370 | }; | 368 | }; |
371 | 369 | ||
372 | 370 | ||