diff options
Diffstat (limited to 'common/domain/typeimplementations.h')
-rw-r--r-- | common/domain/typeimplementations.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/common/domain/typeimplementations.h b/common/domain/typeimplementations.h index 705b059..8acea58 100644 --- a/common/domain/typeimplementations.h +++ b/common/domain/typeimplementations.h | |||
@@ -27,7 +27,6 @@ | |||
27 | #include "addressbook_generated.h" | 27 | #include "addressbook_generated.h" |
28 | 28 | ||
29 | class ReadPropertyMapper; | 29 | class ReadPropertyMapper; |
30 | template<typename T> | ||
31 | class WritePropertyMapper; | 30 | class WritePropertyMapper; |
32 | class IndexPropertyMapper; | 31 | class IndexPropertyMapper; |
33 | 32 | ||
@@ -48,7 +47,7 @@ public: | |||
48 | typedef Sink::ApplicationDomain::Buffer::MailBuilder BufferBuilder; | 47 | typedef Sink::ApplicationDomain::Buffer::MailBuilder BufferBuilder; |
49 | static void configure(TypeIndex &index); | 48 | static void configure(TypeIndex &index); |
50 | static void configure(ReadPropertyMapper &propertyMapper); | 49 | static void configure(ReadPropertyMapper &propertyMapper); |
51 | static void configure(WritePropertyMapper<BufferBuilder> &propertyMapper); | 50 | static void configure(WritePropertyMapper &propertyMapper); |
52 | static void configure(IndexPropertyMapper &indexPropertyMapper); | 51 | static void configure(IndexPropertyMapper &indexPropertyMapper); |
53 | }; | 52 | }; |
54 | 53 | ||
@@ -59,7 +58,7 @@ public: | |||
59 | typedef Sink::ApplicationDomain::Buffer::FolderBuilder BufferBuilder; | 58 | typedef Sink::ApplicationDomain::Buffer::FolderBuilder BufferBuilder; |
60 | static void configure(TypeIndex &); | 59 | static void configure(TypeIndex &); |
61 | static void configure(ReadPropertyMapper &); | 60 | static void configure(ReadPropertyMapper &); |
62 | static void configure(WritePropertyMapper<BufferBuilder> &); | 61 | static void configure(WritePropertyMapper &); |
63 | static void configure(IndexPropertyMapper &indexPropertyMapper); | 62 | static void configure(IndexPropertyMapper &indexPropertyMapper); |
64 | }; | 63 | }; |
65 | 64 | ||
@@ -70,7 +69,7 @@ public: | |||
70 | typedef Sink::ApplicationDomain::Buffer::ContactBuilder BufferBuilder; | 69 | typedef Sink::ApplicationDomain::Buffer::ContactBuilder BufferBuilder; |
71 | static void configure(TypeIndex &); | 70 | static void configure(TypeIndex &); |
72 | static void configure(ReadPropertyMapper &); | 71 | static void configure(ReadPropertyMapper &); |
73 | static void configure(WritePropertyMapper<BufferBuilder> &); | 72 | static void configure(WritePropertyMapper &); |
74 | static void configure(IndexPropertyMapper &indexPropertyMapper); | 73 | static void configure(IndexPropertyMapper &indexPropertyMapper); |
75 | }; | 74 | }; |
76 | 75 | ||
@@ -81,7 +80,7 @@ public: | |||
81 | typedef Sink::ApplicationDomain::Buffer::AddressbookBuilder BufferBuilder; | 80 | typedef Sink::ApplicationDomain::Buffer::AddressbookBuilder BufferBuilder; |
82 | static void configure(TypeIndex &); | 81 | static void configure(TypeIndex &); |
83 | static void configure(ReadPropertyMapper &); | 82 | static void configure(ReadPropertyMapper &); |
84 | static void configure(WritePropertyMapper<BufferBuilder> &); | 83 | static void configure(WritePropertyMapper &); |
85 | static void configure(IndexPropertyMapper &indexPropertyMapper); | 84 | static void configure(IndexPropertyMapper &indexPropertyMapper); |
86 | }; | 85 | }; |
87 | 86 | ||
@@ -92,7 +91,7 @@ public: | |||
92 | typedef Sink::ApplicationDomain::Buffer::EventBuilder BufferBuilder; | 91 | typedef Sink::ApplicationDomain::Buffer::EventBuilder BufferBuilder; |
93 | static void configure(TypeIndex &); | 92 | static void configure(TypeIndex &); |
94 | static void configure(ReadPropertyMapper &); | 93 | static void configure(ReadPropertyMapper &); |
95 | static void configure(WritePropertyMapper<BufferBuilder> &); | 94 | static void configure(WritePropertyMapper &); |
96 | static void configure(IndexPropertyMapper &indexPropertyMapper); | 95 | static void configure(IndexPropertyMapper &indexPropertyMapper); |
97 | }; | 96 | }; |
98 | 97 | ||