diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-07 14:47:48 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-07 14:47:48 +0000 |
commit | 813cabb5e67bab646a838890fa55363ad566ee11 (patch) | |
tree | 509fd37f0852e92b49b74f5b0e24b0faa69a758e /docs/samples/traverse_iter.cpp | |
parent | aac7a252bfcecc30edf374dc51ca54c8be7a9159 (diff) |
docs: Added traverse samples, minor manual fixes, 'getting' section is almost finished
git-svn-id: http://pugixml.googlecode.com/svn/trunk@567 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'docs/samples/traverse_iter.cpp')
-rw-r--r-- | docs/samples/traverse_iter.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/samples/traverse_iter.cpp b/docs/samples/traverse_iter.cpp new file mode 100644 index 0000000..b134f2f --- /dev/null +++ b/docs/samples/traverse_iter.cpp @@ -0,0 +1,25 @@ +#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_iter
+ for (pugi::xml_node_iterator it = tools.begin(); it != tools.end(); ++it)
+ {
+ std::cout << "Tool:";
+
+ for (pugi::xml_attribute_iterator ait = it->attributes_begin(); ait != it->attributes_end(); ++ait)
+ {
+ std::cout << " " << ait->name() << "=" << ait->value();
+ }
+
+ std::cout << std::endl;
+ }
+ //]
+}
|