|
1 /* |
|
2 * Copyright (c) 2003 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: Core XML defines collected in one place. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __PENGXMLDEFS_H__ |
|
19 #define __PENGXMLDEFS_H__ |
|
20 |
|
21 //XML tag parts |
|
22 _LIT8( KXmlTagStart, "<" ); |
|
23 _LIT8( KXmlEndTagStart, "</" ); |
|
24 _LIT8( KXmlTagEnd, ">" ); |
|
25 _LIT8( KXmlEmptyTagEnd, "/>" ); |
|
26 |
|
27 |
|
28 |
|
29 |
|
30 //XML special characters |
|
31 _LIT8( KXmlEqualSign, "=" ); |
|
32 _LIT8( KXmlSlash, "/" ); |
|
33 _LIT8( KXmlApostrophe, "'" ); |
|
34 _LIT8( KXmlDoubleQuote, "\"" ); |
|
35 _LIT8( KXmlWhiteSpace, " " ); |
|
36 |
|
37 |
|
38 //XML entity references. |
|
39 _LIT8( KEntityAmpersand, "&" ); |
|
40 _LIT8( KEntityGreaterThan, ">" ); |
|
41 _LIT8( KEntityLowerThan, "<" ); |
|
42 _LIT8( KEntityDoubleQuote, """ ); |
|
43 _LIT8( KEntityApostrophe, "'" ); |
|
44 |
|
45 |
|
46 //Special characters |
|
47 _LIT16( KPercentSign16, "%" ); |
|
48 _LIT8( KPercentSign8, "%" ); |
|
49 |
|
50 |
|
51 #endif // __PENGXMLDEFS_H__ |