summaryrefslogtreecommitdiffstats
path: root/common/resourceaccess.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/resourceaccess.h')
-rw-r--r--common/resourceaccess.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/resourceaccess.h b/common/resourceaccess.h
index 088bf36..4c9d9d2 100644
--- a/common/resourceaccess.h
+++ b/common/resourceaccess.h
@@ -30,6 +30,8 @@
30namespace Akonadi2 30namespace Akonadi2
31{ 31{
32 32
33class QueuedCommand;
34
33class ResourceAccess : public QObject 35class ResourceAccess : public QObject
34{ 36{
35 Q_OBJECT 37 Q_OBJECT
@@ -68,6 +70,9 @@ private:
68 void registerCallback(uint messageId, const std::function<void(int error, const QString &)> &callback); 70 void registerCallback(uint messageId, const std::function<void(int error, const QString &)> &callback);
69 void startResourceAndConnect(); 71 void startResourceAndConnect();
70 72
73 void sendCommand(const QSharedPointer<QueuedCommand> &command);
74 void processCommandQueue();
75
71 class Private; 76 class Private;
72 Private * const d; 77 Private * const d;
73}; 78};