equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __CONTENTPROCESSORINITPARAMS_H__ |
|
17 #define __CONTENTPROCESSORINITPARAMS_H__ |
|
18 |
|
19 #include <xml/contenthandler.h> |
|
20 #include <xml/plugins/elementstack.h> // needed for the typedef |
|
21 |
|
22 |
|
23 namespace Xml |
|
24 { |
|
25 |
|
26 class RStringDictionaryCollection; |
|
27 |
|
28 struct TContentProcessorInitParams |
|
29 /** |
|
30 A structure for passing initialisation parameters to the derived class being instantiated. |
|
31 |
|
32 @publishedPartner |
|
33 @released |
|
34 */ |
|
35 { |
|
36 /** |
|
37 The client callback to pass the data to. |
|
38 We do not own this. |
|
39 */ |
|
40 MContentHandler* iContentHandler; |
|
41 |
|
42 /** |
|
43 The collection of string dictionaries that can be loaded by the user or by the framework at runtime. |
|
44 We do not own this. |
|
45 */ |
|
46 RStringDictionaryCollection* iStringDictionaryCollection; |
|
47 |
|
48 /** |
|
49 The Element stack that allows checking on tag ordering. |
|
50 An object may want to check this in associating with validation. |
|
51 We do not own this. |
|
52 */ |
|
53 RElementStack* iElementStack; |
|
54 |
|
55 }; |
|
56 |
|
57 } |
|
58 |
|
59 #endif //__CONTENTPROCESSORINITPARAMS_H__ |