mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-12 04:05:10 -05:00
28 lines
654 B
C++
28 lines
654 B
C++
#include "pugixml.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
//[code_save_declaration
|
|
// get a test document
|
|
pugi::xml_document doc;
|
|
doc.load("<foo bar='baz'><call>hey</call></foo>");
|
|
|
|
// add a custom declaration node
|
|
pugi::xml_node decl = doc.prepend_child(pugi::node_declaration);
|
|
decl.append_attribute("version") = "1.0";
|
|
decl.append_attribute("encoding") = "UTF-8";
|
|
decl.append_attribute("standalone") = "no";
|
|
|
|
// <?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
// <foo bar="baz">
|
|
// <call>hey</call>
|
|
// </foo>
|
|
doc.save(std::cout);
|
|
std::cout << std::endl;
|
|
//]
|
|
}
|
|
|
|
// vim:et
|