equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2007 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: Helper class for converting from/to xml markup data. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef TPOSLMXMLMARKUPCONVERTER_H |
|
21 #define TPOSLMXMLMARKUPCONVERTER_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <Lbs.h> |
|
25 #include "EPos_LmConverter.h" |
|
26 |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * Helper class for converting from/to xml markup data. |
|
31 * |
|
32 */ |
|
33 class TPosLmXmlMarkupConverter |
|
34 { |
|
35 public: // Constructors and destructor |
|
36 |
|
37 /** |
|
38 * C++ default constructor. |
|
39 */ |
|
40 TPosLmXmlMarkupConverter(); |
|
41 |
|
42 public: // New functions |
|
43 |
|
44 |
|
45 /** |
|
46 * Resets the usage of start and end tags. |
|
47 */ |
|
48 void Reset(); |
|
49 |
|
50 |
|
51 static void FixChildTagL( |
|
52 /* IN */ TUint32 aTreeMask, |
|
53 /* IN/OUT */ TPosXmlTagType& aTagType |
|
54 ); |
|
55 |
|
56 private: |
|
57 |
|
58 |
|
59 }; |
|
60 |
|
61 #endif // TPOSLMXMLMARKUPCONVERTER_H |
|
62 |
|
63 // End of File |