summaryrefslogtreecommitdiffstats
path: root/common/domain/typeimplementations.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-28 12:19:52 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-28 12:19:52 +0200
commita4ce2b2eda8a2fea4263017e6868c327f22f5e47 (patch)
tree448b51e6107c0e377f3a92103bf060d128496c35 /common/domain/typeimplementations.h
parent6b8432a5c0647d8fbe3cda549574ae13e07bb2f4 (diff)
downloadsink-a4ce2b2eda8a2fea4263017e6868c327f22f5e47.tar.gz
sink-a4ce2b2eda8a2fea4263017e6868c327f22f5e47.zip
Removed the template argument from the write property mapper
Diffstat (limited to 'common/domain/typeimplementations.h')
-rw-r--r--common/domain/typeimplementations.h11
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
29class ReadPropertyMapper; 29class ReadPropertyMapper;
30template<typename T>
31class WritePropertyMapper; 30class WritePropertyMapper;
32class IndexPropertyMapper; 31class 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