equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 the License "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: |
|
15 * Inline method definitions of class TDdParser. |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef DD_PARSER_INL |
|
22 #define DD_PARSER_INL |
|
23 |
|
24 // ================= MEMBER FUNCTIONS ======================= |
|
25 |
|
26 // --------------------------------------------------------- |
|
27 // TDdParser::TDdParser() |
|
28 // --------------------------------------------------------- |
|
29 // |
|
30 TDdParser::TDdParser() |
|
31 { |
|
32 // NULL pointers for clarity. |
|
33 // Otherwise, semantics ensure hat these are never used |
|
34 // uninitialized (the only public method takes the data as arguments). |
|
35 iData = NULL; |
|
36 } |
|
37 |
|
38 // --------------------------------------------------------- |
|
39 // TDdParser::Error() |
|
40 // --------------------------------------------------------- |
|
41 // |
|
42 void TDdParser::Error( TInt aError ) |
|
43 { |
|
44 // Store error, but keep going. We can still get the installNotifyURI and |
|
45 // report. Parsing will leave with the stored error code after processing |
|
46 // is done. |
|
47 if ( !iError ) |
|
48 { |
|
49 iError = aError; |
|
50 } |
|
51 } |
|
52 |
|
53 #endif /* def DD_PARSER_INL */ |