Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 * Copyright (c) 2004-2006 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * 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
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Processing instruction node functions
24 #ifndef XMLENGINE_PROCESSINGINSTRUCTION_H_INCLUDED
25 #define XMLENGINE_PROCESSINGINSTRUCTION_H_INCLUDED
27 #include "xmlengnode.h"
32 * Instance of TXmlEngProcessingInstruction class represents an XML processing
33 * instruction in the DOM tree.
35 * @lib XmlEngineDOM.lib
38 class TXmlEngProcessingInstruction : public TXmlEngNode
46 inline TXmlEngProcessingInstruction();
49 * Get target of processing instruction.
52 * @return "Target" part of a processing instruction
57 * @see http://www.w3.org/TR/2004/REC-xml-20040204/#sec-pi
59 IMPORT_C TPtrC8 Target() const;
62 * Get data of processing instruction.
65 * @return "Data" part of a processing instruction
70 * @see http://www.w3.org/TR/2004/REC-xml-20040204/#sec-pi
72 IMPORT_C TPtrC8 Data() const;
75 * Sets data part of processing instruction
78 * @param aData New data part of processing instruction
79 * @note PI contents should not contain "?>" sequence
81 IMPORT_C void SetDataL(const TDesC8& aData);
88 * @param aInternal processing instruction pointer
90 inline TXmlEngProcessingInstruction(void* aInternal);
95 #include "xmlengprocessinginstruction.inl"
96 #endif /* XMLENGINE_PROCESSINGINSTRUCTION_H_INCLUDED */