00001 /* 00002 * ============================================================================== 00003 * Name : xmlengprocessinginstruction.h 00004 * Part of : XmlEngine / DOM XPath C++ Wrapper 00005 * Interface : Private, XML Engine DOM API 00006 * Description : Processing instruction node functions 00007 * Version : %version: 2 % 00008 * 00009 * Copyright © 2004-2006 Nokia. All rights reserved. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia. All rights are reserved. Copying, including 00013 * reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia. 00018 * ============================================================================== 00019 */ 00020 00021 #ifndef XMLENGINE_PROCESSINGINSTRUCTION_H_INCLUDED 00022 #define XMLENGINE_PROCESSINGINSTRUCTION_H_INCLUDED 00023 00024 #include "xmlengnode.h" 00025 00026 00027 00035 class TXmlEngProcessingInstruction : public TXmlEngNode 00036 { 00037 public: 00043 inline TXmlEngProcessingInstruction(); 00044 00056 IMPORT_C TPtrC8 Target() const; 00057 00069 IMPORT_C TPtrC8 Data() const; 00070 00078 IMPORT_C void SetDataL(const TDesC8& aData); 00079 00080 protected: 00087 inline TXmlEngProcessingInstruction(void* aInternal); 00088 }; 00089 00090 00091 00092 #include "xmlengprocessinginstruction.inl" 00093 #endif /* XMLENGINE_PROCESSINGINSTRUCTION_H_INCLUDED */