diff options
Diffstat (limited to 'common/pipeline.h')
-rw-r--r-- | common/pipeline.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/common/pipeline.h b/common/pipeline.h index 6df2d76..a6696ec 100644 --- a/common/pipeline.h +++ b/common/pipeline.h | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <Async/Async> | 31 | #include <Async/Async> |
32 | 32 | ||
33 | #include "entity_generated.h" | 33 | #include "entity_generated.h" |
34 | #include "domainadaptor.h" | ||
34 | 35 | ||
35 | namespace Akonadi2 | 36 | namespace Akonadi2 |
36 | { | 37 | { |
@@ -53,10 +54,11 @@ public: | |||
53 | void setPreprocessors(const QString &entityType, Type pipelineType, const QVector<Preprocessor *> &preprocessors); | 54 | void setPreprocessors(const QString &entityType, Type pipelineType, const QVector<Preprocessor *> &preprocessors); |
54 | 55 | ||
55 | void null(); | 56 | void null(); |
57 | void setAdaptorFactory(const QString &entityType, DomainTypeAdaptorFactoryInterface::Ptr factory); | ||
56 | 58 | ||
57 | KAsync::Job<void> newEntity(void const *command, size_t size); | 59 | KAsync::Job<void> newEntity(void const *command, size_t size); |
58 | void modifiedEntity(const QString &entityType, const QByteArray &key, void *data, size_t size); | 60 | KAsync::Job<void> modifiedEntity(void const *command, size_t size); |
59 | void deletedEntity(const QString &entityType, const QByteArray &key); | 61 | KAsync::Job<void> deletedEntity(void const *command, size_t size); |
60 | 62 | ||
61 | Q_SIGNALS: | 63 | Q_SIGNALS: |
62 | void revisionUpdated(); | 64 | void revisionUpdated(); |