From a50f47f8056ffbb5fc52f2db07858c7dcd511d2e Mon Sep 17 00:00:00 2001
From: "arseny.kapoulkine@gmail.com"
xml_text
is essentially a
helper class that operates on xml_node
values. It is bound to a node of type node_pcdata
- or [node_cdata]. You can use the following function to retrieve this node:
+ or node_cdata. You can use the following
+ function to retrieve this node:
xml_node xml_text::data() const;
Essentially, assuming text
- is an xml_text
object, callling
+ is an xml_text
object, calling
text.get()
is
equivalent to calling text.data().value()
.