diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-27 11:58:04 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-27 11:58:04 +0000 |
commit | f70545253701a4b9e820bc638effa31f7941dd0c (patch) | |
tree | da02daa6a876239c7b38713e7f18640ba7423bd9 /docs/samples/load_file.cpp | |
parent | c7a8f498a721a81588d24723b9224428a6b91b12 (diff) |
docs: Extracted Installation section, minor fixes/clarifications, added loading intro and load_file documentation
git-svn-id: http://pugixml.googlecode.com/svn/trunk@541 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'docs/samples/load_file.cpp')
-rw-r--r-- | docs/samples/load_file.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/samples/load_file.cpp b/docs/samples/load_file.cpp new file mode 100644 index 0000000..1a102c2 --- /dev/null +++ b/docs/samples/load_file.cpp @@ -0,0 +1,14 @@ +#include "pugixml.hpp"
+
+#include <iostream>
+
+int main()
+{
+//[code_load_file
+ pugi::xml_document doc;
+
+ pugi::xml_parse_result result = doc.load_file("tree.xml");
+
+ std::cout << "Load result: " << result.description() << ", mesh name: " << doc.child("mesh").attribute("name").value() << std::endl;
+//]
+}
|