diff -r 000000000000 -r e35f40988205 xml/legacyminidomparser/XMLDom/INC/GMXMLProcessingInstruction.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xml/legacyminidomparser/XMLDom/INC/GMXMLProcessingInstruction.h Thu Dec 17 09:29:21 2009 +0200 @@ -0,0 +1,65 @@ +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// GMXMLProcessing Instruction.h +// +// + +/** + @file +*/ + +#ifndef __GMXMLPROCINSTR_H__ +#define __GMXMLPROCINSTR_H__ + +#include +#include + +class CMDXMLProcessingInstruction : public CMDXMLCharacterData +/** A processing instruction section of an XML file. + +It has text and a place in the object tree, but has no children. +@publishedPartner +@released +*/ +{ +public: + /** Allocates and constructs a new CMDXMLProcessingInstruction, leaving the object + on the cleanup stack. + + @param aOwnerDocument Pointer to the document at the root of the DOM tree + @return The new CMDXMLProcessingInstruction + @leave KErrNoMemory Out of memory */ + IMPORT_C static CMDXMLProcessingInstruction* NewLC( CMDXMLDocument* aOwnerDocument ); + + /** Allocates and constructs a new CMDXMLProcessingInstruction. + + @param aOwnerDocument Pointer to the document at the root of the DOM tree + @return The new CMDXMLProcessingInstruction + @leave KErrNoMemory Out of memory */ + IMPORT_C static CMDXMLProcessingInstruction* NewL( CMDXMLDocument* aOwnerDocument ); + + /** Destructor. */ + IMPORT_C virtual ~CMDXMLProcessingInstruction(); + + +protected: + /* + * Constructor + * @param aOwnerDocument The document at the root of the DOM tree + */ + CMDXMLProcessingInstruction( CMDXMLDocument* aOwnerDocument ); +}; + + +#endif