equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Versit data stripper and merger for contacts. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDES |
|
21 #include "NSmlDataModBase.h" |
|
22 #include <vcard.h> |
|
23 |
|
24 // ============================ MEMBER FUNCTIONS =============================== |
|
25 |
|
26 // ----------------------------------------------------------------------------- |
|
27 // CNSmlVCardMod::CNSmlVCardMod |
|
28 // C++ default constructor. |
|
29 // ----------------------------------------------------------------------------- |
|
30 // |
|
31 EXPORT_C CNSmlVCardMod::CNSmlVCardMod() : CNSmlDataModBase() |
|
32 { |
|
33 } |
|
34 |
|
35 // ----------------------------------------------------------------------------- |
|
36 // CNSmlVCardMod::ChildCreateParserLC |
|
37 // Creates correct type of parser for Contacts Data Modifications. |
|
38 // ----------------------------------------------------------------------------- |
|
39 // |
|
40 CVersitParser* CNSmlVCardMod::ChildCreateParserLC() |
|
41 { |
|
42 CVersitParser* p = CParserVCard::NewL(); |
|
43 CleanupStack::PushL( p ); |
|
44 return p; |
|
45 } |
|
46 |
|
47 // End of file |