summaryrefslogtreecommitdiffstats
path: root/common/genericresource.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/genericresource.h')
-rw-r--r--common/genericresource.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/genericresource.h b/common/genericresource.h
index 052a9f5..cfc6653 100644
--- a/common/genericresource.h
+++ b/common/genericresource.h
@@ -26,6 +26,7 @@
26#include <QTimer> 26#include <QTimer>
27 27
28class Processor; 28class Processor;
29class ChangeReplay;
29 30
30namespace Akonadi2 31namespace Akonadi2
31{ 32{
@@ -47,6 +48,9 @@ public:
47 48
48 int error() const; 49 int error() const;
49 50
51private Q_SLOTS:
52 void updateLowerBoundRevision();
53
50protected: 54protected:
51 void onProcessorError(int errorCode, const QString &errorMessage); 55 void onProcessorError(int errorCode, const QString &errorMessage);
52 void enqueueCommand(MessageQueue &mq, int commandId, const QByteArray &data); 56 void enqueueCommand(MessageQueue &mq, int commandId, const QByteArray &data);
@@ -58,8 +62,10 @@ protected:
58 62
59private: 63private:
60 Processor *mProcessor; 64 Processor *mProcessor;
65 ChangeReplay *mSourceChangeReplay;
61 int mError; 66 int mError;
62 QTimer mCommitQueueTimer; 67 QTimer mCommitQueueTimer;
68 qint64 mClientLowerBoundRevision;
63}; 69};
64 70
65} 71}