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 __DOCUMENTPARAMETERS_H__
17 #define __DOCUMENTPARAMETERS_H__
20 #include <stringpool.h>
25 class RDocumentParameters
27 The RDocumentParameters class contains information about the document to be passed to the client.
39 IMPORT_C RDocumentParameters();
45 IMPORT_C void Close();
51 IMPORT_C void Open(const RString& aCharacterSetName);
53 IMPORT_C const RString& CharacterSetName() const;
62 RDocumentParameters(const RDocumentParameters& aOriginal);
68 RDocumentParameters &operator=(const RDocumentParameters& aRhs);
73 The character encoding of the document.
74 The Internet-standard name of a character set, which is identified in Symbian OS by its UID
76 RString iCharacterSetName;