1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * |
|
5 * This program is free software: you can redistribute it and/or modify |
|
6 * it under the terms of the GNU Lesser General Public License as published by |
|
7 * the Free Software Foundation, version 2.1 of the License. |
|
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 Lesser General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU Lesser General Public License |
|
15 * along with this program. If not, |
|
16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/". |
|
17 * |
|
18 * Description: |
|
19 * |
|
20 */ |
|
21 |
|
22 #ifndef HBSERVICEPROVIDERCONTACT_H |
|
23 #define HBSERVICEPROVIDERCONTACT_H |
|
24 |
|
25 #include <QList> |
|
26 #include <QString> |
|
27 #include <QUuid> |
|
28 #include <xqserviceipcmarshal.h> |
|
29 |
|
30 |
|
31 class HbContact |
|
32 { |
|
33 public: |
|
34 HbContact() {}; |
|
35 virtual ~HbContact() {}; |
|
36 |
|
37 QString mLabel; |
|
38 QString mNumber; |
|
39 QString mAddress; |
|
40 QString mCity; |
|
41 QString mCountry; |
|
42 QUuid mUid; |
|
43 |
|
44 template <typename Stream> void serialize(Stream &stream) const; |
|
45 template <typename Stream> void deserialize(Stream &stream); |
|
46 }; |
|
47 |
|
48 /* |
|
49 struct HbContact |
|
50 { |
|
51 public: |
|
52 QString mLabel; |
|
53 QString mNumber; |
|
54 QString mAddress; |
|
55 QString mCity; |
|
56 QString mCountry; |
|
57 QUuid mUid; |
|
58 |
|
59 template <typename Stream> void serialize(Stream &stream) const; |
|
60 template <typename Stream> void deserialize(Stream &stream); |
|
61 }; |
|
62 */ |
|
63 |
|
64 template <typename Stream> inline void HbContact::serialize(Stream &s) const |
|
65 { |
|
66 s << mLabel; |
|
67 s << mNumber; |
|
68 s << mUid; |
|
69 } |
|
70 |
|
71 template <typename Stream> inline void HbContact::deserialize(Stream &s) |
|
72 { |
|
73 s >> mLabel; |
|
74 s >> mNumber; |
|
75 s >> mUid; |
|
76 } |
|
77 |
|
78 typedef QList<HbContact> HbContactList; |
|
79 |
|
80 Q_DECLARE_USER_METATYPE(HbContact) |
|
81 Q_DECLARE_USER_METATYPE_NO_OPERATORS(HbContactList) |
|
82 |
|
83 #endif // HBSERVICEPROVIDERCONTACT_H |
|