summaryrefslogtreecommitdiffstats
path: root/common/clientapi.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-01-19 14:47:11 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-01-19 14:47:11 +0100
commit336e88d4bd330e0d28861c7f702711f53996bfca (patch)
tree82a58ccb3c4d15600a004b319e720bf722e31439 /common/clientapi.h
parentcd7287325944571e9d53b00b48abdba4c9257474 (diff)
downloadsink-336e88d4bd330e0d28861c7f702711f53996bfca.tar.gz
sink-336e88d4bd330e0d28861c7f702711f53996bfca.zip
ResourceNotification -> Notification
Diffstat (limited to 'common/clientapi.h')
-rw-r--r--common/clientapi.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/clientapi.h b/common/clientapi.h
index e1d5b8d..06376c2 100644
--- a/common/clientapi.h
+++ b/common/clientapi.h
@@ -33,7 +33,7 @@ class QAbstractItemModel;
33 33
34namespace Akonadi2 { 34namespace Akonadi2 {
35class ResourceAccess; 35class ResourceAccess;
36class ResourceNotification; 36class Notification;
37 37
38/** 38/**
39 * Store interface used in the client API. 39 * Store interface used in the client API.
@@ -127,7 +127,9 @@ namespace Resources {
127class Notifier { 127class Notifier {
128public: 128public:
129 Notifier(const QSharedPointer<ResourceAccess> &resourceAccess); 129 Notifier(const QSharedPointer<ResourceAccess> &resourceAccess);
130 void registerHandler(std::function<void(const ResourceNotification &)>); 130 // Notifier(const QByteArray &resource);
131 // Notifier(const QByteArrayList &resource);
132 void registerHandler(std::function<void(const Notification &)>);
131 133
132private: 134private:
133 class Private; 135 class Private;