summaryrefslogtreecommitdiffstats
path: root/common/domain/contact.h
diff options
context:
space:
mode:
authorSandro Knauß <sknauss@kde.org>2017-01-11 13:06:55 +0100
committerSandro Knauß <sknauss@kde.org>2017-01-30 10:58:20 +0100
commitbb624c5ec2ab2e13dedcba67fd60e3d2f03216d7 (patch)
treeee27923e8bf1fa51a75599beaff7e005368180e0 /common/domain/contact.h
parent17d8b00ae32e2b1522c5dce6719566e4fbe3357e (diff)
downloadsink-bb624c5ec2ab2e13dedcba67fd60e3d2f03216d7.tar.gz
sink-bb624c5ec2ab2e13dedcba67fd60e3d2f03216d7.zip
Add Contact as new domain type
Diffstat (limited to 'common/domain/contact.h')
-rw-r--r--common/domain/contact.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/common/domain/contact.h b/common/domain/contact.h
new file mode 100644
index 0000000..c803a9f
--- /dev/null
+++ b/common/domain/contact.h
@@ -0,0 +1,57 @@
1/*
2 * Copyright (C) 2017 Sandro Knauß <knauss@kolabsys.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19#pragma once
20
21#include "applicationdomaintype.h"
22
23class QByteArray;
24
25template<typename T>
26class ReadPropertyMapper;
27template<typename T>
28class WritePropertyMapper;
29class IndexPropertyMapper;
30
31class TypeIndex;
32
33namespace Sink {
34namespace ApplicationDomain {
35 namespace Buffer {
36 struct Contact;
37 struct ContactBuilder;
38 }
39
40/**
41 * Implements all type-specific code such as updating and querying indexes.
42 *
43 * These are type specifiy default implementations. Theoretically a resource could implement it's own implementation.
44 */
45template<>
46class TypeImplementation<Sink::ApplicationDomain::Contact> {
47public:
48 typedef Sink::ApplicationDomain::Buffer::Contact Buffer;
49 typedef Sink::ApplicationDomain::Buffer::ContactBuilder BufferBuilder;
50 static void configure(TypeIndex &);
51 static void configure(ReadPropertyMapper<Buffer> &);
52 static void configure(WritePropertyMapper<BufferBuilder> &);
53 static void configure(IndexPropertyMapper &indexPropertyMapper);
54};
55
56}
57}