summaryrefslogtreecommitdiff
path: root/SDL_Core/tools/intergen/third_party/pugixml/docs/samples/save_subtree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Core/tools/intergen/third_party/pugixml/docs/samples/save_subtree.cpp')
-rw-r--r--SDL_Core/tools/intergen/third_party/pugixml/docs/samples/save_subtree.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/SDL_Core/tools/intergen/third_party/pugixml/docs/samples/save_subtree.cpp b/SDL_Core/tools/intergen/third_party/pugixml/docs/samples/save_subtree.cpp
deleted file mode 100644
index 0091b3d8a..000000000
--- a/SDL_Core/tools/intergen/third_party/pugixml/docs/samples/save_subtree.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "pugixml.hpp"
-
-#include <iostream>
-
-int main()
-{
- //[code_save_subtree
- // get a test document
- pugi::xml_document doc;
- doc.load("<foo bar='baz'><call>hey</call></foo>");
-
- // print document to standard output (prints <?xml version="1.0"?><foo bar="baz"><call>hey</call></foo>)
- doc.save(std::cout, "", pugi::format_raw);
- std::cout << std::endl;
-
- // print document to standard output as a regular node (prints <foo bar="baz"><call>hey</call></foo>)
- doc.print(std::cout, "", pugi::format_raw);
- std::cout << std::endl;
-
- // print a subtree to standard output (prints <call>hey</call>)
- doc.child("foo").child("call").print(std::cout, "", pugi::format_raw);
- std::cout << std::endl;
- //]
-}
-
-// vim:et