|
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 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: Contain the normalized tokens for common attributes. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef PACKED_ATTRIBUTES_H |
|
20 #define PACKED_ATTRIBUTES_H |
|
21 |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 // MACROS |
|
28 |
|
29 // DATA TYPES |
|
30 enum TPackedTokens |
|
31 { |
|
32 EPackedTokenAttribute = 0 // Must be zero. |
|
33 }; |
|
34 |
|
35 enum TPackedFolderTokens |
|
36 { |
|
37 EFolderTokenFolderBegin = 1, // Must not start at zero. |
|
38 EFolderTokenFolderEnd = 2, |
|
39 EFolderTokenFeed = 3, |
|
40 EFolderTokenItemBegin = 4, |
|
41 EFolderTokenItemEnd = 5 |
|
42 }; |
|
43 |
|
44 enum TPackedFeedTokens |
|
45 { |
|
46 EFeedTokenFeedBegin = 1, // Must not start at zero. |
|
47 EFeedTokenFeedEnd = 2, |
|
48 EFeedTokenItemBegin = 3, |
|
49 EFeedTokenItemEnd = 4, |
|
50 EFeedTokenEnclosureBegin = 5, |
|
51 EFeedTokenEnclosureEnd = 6, |
|
52 EFeedTokenOtherLink = 7, |
|
53 EFeedTokenOtherTitle = 8, |
|
54 EFeedTokenOtherDescription = 9 |
|
55 }; |
|
56 |
|
57 // FUNCTION PROTOTYPES |
|
58 |
|
59 // FORWARD DECLARATIONS |
|
60 |
|
61 // CLASS DECLARATION |
|
62 |
|
63 |
|
64 #endif // PACKED_ATTRIBUTES_H |
|
65 |
|
66 // End of File |