PCL
|
Unsupported or invalid XML element. More...
#include <XML.h>
Public Member Functions | |
XMLUnknownElement (const String &name, const String ¶meters=String()) | |
XMLUnknownElement (const XMLUnknownElement &)=default | |
XMLNode * | Clone () const override |
const String & | Name () const |
XMLUnknownElement & | operator= (const XMLUnknownElement &)=default |
const String & | Parameters () const |
void | Serialize (IsoString &text, bool autoFormat, char indentChar, unsigned indentSize, unsigned level) const override |
![]() | |
XMLNode (const XMLNode &x) | |
XMLNode (node_type type) | |
~XMLNode () override | |
bool | IsChildNode () const |
bool | IsComment () const |
bool | IsElement () const |
bool | IsText () const |
const XMLNodeLocation & | Location () const |
virtual bool | NLAfter (const XMLNode &previous) const |
node_type | NodeType () const |
XMLNode & | operator= (const XMLNode &x) |
virtual void | SerializeAsHTML (IsoString &text, bool autoFormat, char indentChar, unsigned indentSize, unsigned level) const |
![]() | |
XMLComponent ()=default | |
XMLComponent (const XMLComponent &)=default | |
virtual | ~XMLComponent () |
bool | IsTopLevel () const |
XMLElement * | ParentElement () const |
Additional Inherited Members | |
![]() | |
using | node_type = XMLNodeType::mask_type |
XMLUnknownElement represents an invalid or unrecognized XML element retrieved while parsing an XML document. In the current PCL implementation, an XMLUnknownElement object is generated if the parser finds an element whose start-tag begins with the "<!" token and is neither a comment section nor a DOCTYPE declaration.
|
default |
Copy constructor.
|
inlineoverridevirtual |
Returns a dynamically allocated copy of this XML node.
Implements pcl::XMLNode.
|
inline |
|
default |
Copy assignment operator. Returns a reference to this object.
|
inline |
|
overridevirtual |
Serializes this XML unknown element with UTF-8 encoding.
See XMLNode::Serialize() for information on function parameters.
Implements pcl::XMLNode.