Replies: 1 comment 1 reply
-
To read the "i=47" string you'd use |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The main node is UANodeSet.
I can read the DataTypes, but not the "I" values. What should i do to be able to read them?
I use that code, to read subnodes:
pugi::xml_node tools = doc.child("UANodeSet").child("Aliases");
for (pugi::xml_node_iterator it = tools.begin(); it != tools.end(); ++it)
{
std::cout << "==Aliases:";
======================================
I have such xml:
Beta Was this translation helpful? Give feedback.
All reactions