diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-04-11 08:39:43 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-04-11 08:39:43 +0200 |
commit | 68fcd3e123e9c0e345d95728d0c8742e53be940a (patch) | |
tree | e4e79abf7f3f2262871675a12f37d38f60fad71e /common/resourcefacade.h | |
parent | 9f5e4a488360c2c0232a12b65e9d1c8366c0bc8b (diff) | |
download | sink-68fcd3e123e9c0e345d95728d0c8742e53be940a.tar.gz sink-68fcd3e123e9c0e345d95728d0c8742e53be940a.zip |
Use ConfigStore for accounts
Diffstat (limited to 'common/resourcefacade.h')
-rw-r--r-- | common/resourcefacade.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/resourcefacade.h b/common/resourcefacade.h index 4d0e597..0deb017 100644 --- a/common/resourcefacade.h +++ b/common/resourcefacade.h | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <Async/Async> | 24 | #include <Async/Async> |
25 | #include "common/resultprovider.h" | 25 | #include "common/resultprovider.h" |
26 | #include "common/domain/applicationdomaintype.h" | 26 | #include "common/domain/applicationdomaintype.h" |
27 | #include "common/configstore.h" | ||
27 | 28 | ||
28 | namespace Sink { | 29 | namespace Sink { |
29 | class Query; | 30 | class Query; |
@@ -50,6 +51,8 @@ public: | |||
50 | KAsync::Job<void> modify(const Sink::ApplicationDomain::SinkAccount &resource) Q_DECL_OVERRIDE; | 51 | KAsync::Job<void> modify(const Sink::ApplicationDomain::SinkAccount &resource) Q_DECL_OVERRIDE; |
51 | KAsync::Job<void> remove(const Sink::ApplicationDomain::SinkAccount &resource) Q_DECL_OVERRIDE; | 52 | KAsync::Job<void> remove(const Sink::ApplicationDomain::SinkAccount &resource) Q_DECL_OVERRIDE; |
52 | QPair<KAsync::Job<void>, typename Sink::ResultEmitter<Sink::ApplicationDomain::SinkAccount::Ptr>::Ptr> load(const Sink::Query &query) Q_DECL_OVERRIDE; | 53 | QPair<KAsync::Job<void>, typename Sink::ResultEmitter<Sink::ApplicationDomain::SinkAccount::Ptr>::Ptr> load(const Sink::Query &query) Q_DECL_OVERRIDE; |
54 | private: | ||
55 | ConfigStore mConfigStore; | ||
53 | }; | 56 | }; |
54 | 57 | ||
55 | class ConfigNotifier : public QObject | 58 | class ConfigNotifier : public QObject |