diff options
Diffstat (limited to 'tests/testimplementations.h')
-rw-r--r-- | tests/testimplementations.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/testimplementations.h b/tests/testimplementations.h index a47a775..785c408 100644 --- a/tests/testimplementations.h +++ b/tests/testimplementations.h | |||
@@ -30,7 +30,7 @@ | |||
30 | //Replace with something different | 30 | //Replace with something different |
31 | #include "event_generated.h" | 31 | #include "event_generated.h" |
32 | 32 | ||
33 | class TestEventAdaptorFactory : public DomainTypeAdaptorFactory<Akonadi2::ApplicationDomain::Event, Akonadi2::ApplicationDomain::Buffer::Event, Akonadi2::ApplicationDomain::Buffer::EventBuilder> | 33 | class TestEventAdaptorFactory : public DomainTypeAdaptorFactory<Sink::ApplicationDomain::Event, Sink::ApplicationDomain::Buffer::Event, Sink::ApplicationDomain::Buffer::EventBuilder> |
34 | { | 34 | { |
35 | public: | 35 | public: |
36 | TestEventAdaptorFactory() | 36 | TestEventAdaptorFactory() |
@@ -41,7 +41,7 @@ public: | |||
41 | virtual ~TestEventAdaptorFactory() {}; | 41 | virtual ~TestEventAdaptorFactory() {}; |
42 | }; | 42 | }; |
43 | 43 | ||
44 | class TestResourceAccess : public Akonadi2::ResourceAccessInterface | 44 | class TestResourceAccess : public Sink::ResourceAccessInterface |
45 | { | 45 | { |
46 | Q_OBJECT | 46 | Q_OBJECT |
47 | public: | 47 | public: |
@@ -55,11 +55,11 @@ public Q_SLOTS: | |||
55 | void close() Q_DECL_OVERRIDE {} | 55 | void close() Q_DECL_OVERRIDE {} |
56 | }; | 56 | }; |
57 | 57 | ||
58 | class TestResourceFacade : public Akonadi2::GenericFacade<Akonadi2::ApplicationDomain::Event> | 58 | class TestResourceFacade : public Sink::GenericFacade<Sink::ApplicationDomain::Event> |
59 | { | 59 | { |
60 | public: | 60 | public: |
61 | TestResourceFacade(const QByteArray &instanceIdentifier, const QSharedPointer<Akonadi2::ResourceAccessInterface> resourceAccess) | 61 | TestResourceFacade(const QByteArray &instanceIdentifier, const QSharedPointer<Sink::ResourceAccessInterface> resourceAccess) |
62 | : Akonadi2::GenericFacade<Akonadi2::ApplicationDomain::Event>(instanceIdentifier, QSharedPointer<TestEventAdaptorFactory>::create(), resourceAccess) | 62 | : Sink::GenericFacade<Sink::ApplicationDomain::Event>(instanceIdentifier, QSharedPointer<TestEventAdaptorFactory>::create(), resourceAccess) |
63 | { | 63 | { |
64 | 64 | ||
65 | } | 65 | } |
@@ -69,11 +69,11 @@ public: | |||
69 | } | 69 | } |
70 | }; | 70 | }; |
71 | 71 | ||
72 | class TestResource : public Akonadi2::GenericResource | 72 | class TestResource : public Sink::GenericResource |
73 | { | 73 | { |
74 | public: | 74 | public: |
75 | TestResource(const QByteArray &instanceIdentifier, QSharedPointer<Akonadi2::Pipeline> pipeline) | 75 | TestResource(const QByteArray &instanceIdentifier, QSharedPointer<Sink::Pipeline> pipeline) |
76 | : Akonadi2::GenericResource(instanceIdentifier, pipeline) | 76 | : Sink::GenericResource(instanceIdentifier, pipeline) |
77 | { | 77 | { |
78 | } | 78 | } |
79 | 79 | ||