PCL
pcl::XMLProcessingInstructions Class Reference

XML processing instructions More...

#include <XML.h>

+ Inheritance diagram for pcl::XMLProcessingInstructions:

Public Member Functions

 XMLProcessingInstructions (const String &target, const String &instructions)
 
 XMLProcessingInstructions (const XMLProcessingInstructions &)=default
 
const StringInstructions () const
 
void Serialize (IsoString &text, bool autoFormat, char indentChar, unsigned indentSize, unsigned level) const override
 
const StringTarget () const
 
- Public Member Functions inherited from pcl::XMLNode
 XMLNode (const XMLNode &x)
 
 XMLNode (node_type type)
 
 ~XMLNode () override
 
bool IsChildNode () const
 
bool IsComment () const
 
bool IsElement () const
 
bool IsText () const
 
const XMLNodeLocationLocation () const
 
virtual bool NLAfter (const XMLNode &previous) const
 
node_type NodeType () const
 
virtual void SerializeAsHTML (IsoString &text, bool autoFormat, char indentChar, unsigned indentSize, unsigned level) const
 
- Public Member Functions inherited from pcl::XMLComponent
 XMLComponent ()=default
 
 XMLComponent (const XMLComponent &)=default
 
virtual ~XMLComponent ()
 
bool IsTopLevel () const
 
XMLElementParentElement () const
 

Additional Inherited Members

- Public Types inherited from pcl::XMLNode
using node_type = XMLNodeType::mask_type
 

Detailed Description

The XMLProcessingInstructions class represents a processing instructions (PI) tag in an XML document:

https://www.w3.org/TR/xml11/#sec-pi

Definition at line 2137 of file XML.h.

Constructor & Destructor Documentation

◆ XMLProcessingInstructions() [1/2]

pcl::XMLProcessingInstructions::XMLProcessingInstructions ( const String target,
const String instructions 
)
inline

Constructs a new XMLProcessingInstructions object with the specified target name and instructions string, both encoded in UTF-16.

The specified instructions string must not contain the sequence "?>". Any occurrence of this forbidden sequence will be removed for serialization.

Definition at line 2149 of file XML.h.

◆ XMLProcessingInstructions() [2/2]

pcl::XMLProcessingInstructions::XMLProcessingInstructions ( const XMLProcessingInstructions )
default

Copy constructor.

Member Function Documentation

◆ Instructions()

const String& pcl::XMLProcessingInstructions::Instructions ( ) const
inline

Returns a reference to the (immutable) instructions string.

Definition at line 2172 of file XML.h.

◆ Serialize()

void pcl::XMLProcessingInstructions::Serialize ( IsoString text,
bool  autoFormat,
char  indentChar,
unsigned  indentSize,
unsigned  level 
) const
overridevirtual

Serializes this XML PI section with UTF-8 encoding.

See XMLNode::Serialize() for information on function parameters.

Implements pcl::XMLNode.

◆ Target()

const String& pcl::XMLProcessingInstructions::Target ( ) const
inline

Returns a reference to the (immutable) instructions target name.

Definition at line 2164 of file XML.h.


The documentation for this class was generated from the following file: