diff options
| author | Your Name <you@example.com> | 2017-02-08 16:18:39 -0800 |
|---|---|---|
| committer | Your Name <you@example.com> | 2017-02-08 16:18:39 -0800 |
| commit | 5ccd1ad50d368cae07613050c9e071effb5f4be1 (patch) | |
| tree | 29cb8868d559fa4a8d1d4ca211f1f56c5cdcf3a0 /tools/intergen/third_party/pugixml/docs/samples/traverse_rangefor.cpp | |
| download | smartdevicelink-master.tar.gz | |
Diffstat (limited to 'tools/intergen/third_party/pugixml/docs/samples/traverse_rangefor.cpp')
| -rw-r--r-- | tools/intergen/third_party/pugixml/docs/samples/traverse_rangefor.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/intergen/third_party/pugixml/docs/samples/traverse_rangefor.cpp b/tools/intergen/third_party/pugixml/docs/samples/traverse_rangefor.cpp new file mode 100644 index 000000000..a284b9ef8 --- /dev/null +++ b/tools/intergen/third_party/pugixml/docs/samples/traverse_rangefor.cpp @@ -0,0 +1,32 @@ +#include "pugixml.hpp" + +#include <iostream> + +int main() +{ + pugi::xml_document doc; + if (!doc.load_file("xgconsole.xml")) return -1; + + pugi::xml_node tools = doc.child("Profile").child("Tools"); + + //[code_traverse_rangefor + for (pugi::xml_node tool: tools.children("Tool")) + { + std::cout << "Tool:"; + + for (pugi::xml_attribute attr: tool.attributes()) + { + std::cout << " " << attr.name() << "=" << attr.value(); + } + + for (pugi::xml_node child: tool.children()) + { + std::cout << ", child " << child.name(); + } + + std::cout << std::endl; + } + //] +} + +// vim:et |
