epoc32/include/xml/documentparameters.h
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
     1.1 --- a/epoc32/include/xml/documentparameters.h	Wed Mar 31 12:27:01 2010 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,82 +0,0 @@
     1.4 -// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 -// All rights reserved.
     1.6 -// This component and the accompanying materials are made available
     1.7 -// 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
     1.8 -// which accompanies this distribution, and is available
     1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.10 -//
    1.11 -// Initial Contributors:
    1.12 -// Nokia Corporation - initial contribution.
    1.13 -//
    1.14 -// Contributors:
    1.15 -//
    1.16 -// Description:
    1.17 -//
    1.18 -
    1.19 -#ifndef __DOCUMENTPARAMETERS_H__
    1.20 -#define __DOCUMENTPARAMETERS_H__
    1.21 -
    1.22 -
    1.23 -#include <stringpool.h>
    1.24 -
    1.25 -namespace Xml
    1.26 -{
    1.27 -
    1.28 -class RDocumentParameters
    1.29 -/**
    1.30 -The RDocumentParameters class contains information about the document to be passed to the client.
    1.31 -
    1.32 -@publishedAll
    1.33 -@released
    1.34 -*/
    1.35 -	{
    1.36 -public:
    1.37 -
    1.38 -/**
    1.39 -@publishedPartner
    1.40 -@released
    1.41 -*/
    1.42 -	IMPORT_C RDocumentParameters();
    1.43 -
    1.44 -/**
    1.45 -@publishedPartner
    1.46 -@released
    1.47 -*/
    1.48 -	IMPORT_C void Close();
    1.49 -
    1.50 -/**
    1.51 -@publishedPartner
    1.52 -@released
    1.53 -*/
    1.54 -	IMPORT_C void Open(const RString& aCharacterSetName);
    1.55 -
    1.56 -	IMPORT_C const RString& CharacterSetName() const;
    1.57 -
    1.58 -private:
    1.59 -
    1.60 -
    1.61 -/**
    1.62 -@publishedPartner
    1.63 -@released
    1.64 -*/
    1.65 -	RDocumentParameters(const RDocumentParameters& aOriginal);
    1.66 -
    1.67 -/**
    1.68 -@publishedPartner
    1.69 -@released
    1.70 -*/
    1.71 -	RDocumentParameters &operator=(const RDocumentParameters& aRhs);
    1.72 -
    1.73 -private:
    1.74 -
    1.75 -/**
    1.76 -The character encoding of the document.
    1.77 -The Internet-standard name of a character set, which is identified in Symbian OS by its UID
    1.78 -*/
    1.79 -	RString	iCharacterSetName;
    1.80 -
    1.81 -	};
    1.82 -
    1.83 -}
    1.84 -
    1.85 -#endif