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 | |
const String & | Name () const |
const String & | Parameters () const |
void | Serialize (IsoString &text, bool autoFormat, char indentChar, unsigned indentSize, unsigned level) const override |
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 XMLNodeLocation & | Location () 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 |
XMLElement * | ParentElement () const |
Additional Inherited Members | |
Public Types inherited from pcl::XMLNode | |
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.
|
inline |
|
inline |
|
overridevirtual |
Serializes this XML unknown element with UTF-8 encoding.
See XMLNode::Serialize() for information on function parameters.
Implements pcl::XMLNode.