blob: ca98dcbb211034f6ec800704f12b7b50be9a0575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include "pugixml.hpp"
#include <iostream>
int main()
{
pugi::xml_document doc;
doc.load_string("<foo bar='baz'><call>hey</call></foo>");
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";
doc.save(std::cout);
std::cout << std::endl;
}
|