Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __PARSERINITPARAMS_H__
17 #define __PARSERINITPARAMS_H__
19 #include <xml/plugins/elementstack.h> // needed for the typedef
24 class CCharSetConverter;
25 class MContentHandler;
26 class RStringDictionaryCollection;
29 struct TParserInitParams
31 A structure for passing initialisation parameters to the derived class being instantiated.
39 The helper class for character conversions and encoding resolution.
42 CCharSetConverter* iCharSetConverter;
45 The client callback to pass the data to.
48 MContentHandler* iContentHandler;
51 The collection of string dictionaries that can be loaded by the user or by the framework at runtime.
54 RStringDictionaryCollection* iStringDictionaryCollection;
57 The Element stack that allows checking on tag ordering.
58 An object may want to check this in associating with validation.
61 RElementStack* iElementStack;
67 #endif //__PARSERINITPARAMS_H__