equal
deleted
inserted
replaced
|
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Telephone Voice Mailbox number settings parser |
|
15 // |
|
16 // |
|
17 |
|
18 #include <msventry.h> |
|
19 |
|
20 #include "BSP.H" |
|
21 #include "IACP.H" |
|
22 #include "TVMP.H" |
|
23 #include "IACPDEF.H" |
|
24 #include "IACPERR.H" |
|
25 |
|
26 |
|
27 // |
|
28 // Constructor |
|
29 // |
|
30 CTelVoiceMailboxParser::CTelVoiceMailboxParser() |
|
31 { |
|
32 } |
|
33 // |
|
34 // Destruction |
|
35 // |
|
36 CTelVoiceMailboxParser::~CTelVoiceMailboxParser() |
|
37 { |
|
38 delete iTel; |
|
39 } |
|
40 |
|
41 // |
|
42 // Parse/Set data members |
|
43 // |
|
44 void CTelVoiceMailboxParser::ParseL(CParsedFieldCollection& aIacpFields) |
|
45 { |
|
46 TBuf<64> aFieldValueBuf; |
|
47 if ((aFieldValueBuf= aIacpFields.GetFieldValue(SMS_TEL_VOICE_MAILBOX_NUM)) != TPtrC()) |
|
48 iTel= aFieldValueBuf.AllocL(); |
|
49 } |
|
50 // |
|
51 // Create entry |
|
52 // |
|
53 void CTelVoiceMailboxParser::ProcessL(CMsvEntry& /*aEntry*/) |
|
54 { |
|
55 //TODO... |
|
56 } |