diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-11 13:29:12 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-07-11 13:29:12 +0000 |
commit | fb507ab2d6f9eaa090671e40b582354b16f3821c (patch) | |
tree | 4cf47721ff98432595ea8704e2e8d421d1f3c913 /docs/samples/save_stream.cpp | |
parent | f73df8d06e67f4a1d00b427d752fb0deab11e553 (diff) |
docs: Replaced all tabs with 4 spaces (guaranteed tab size)
git-svn-id: http://pugixml.googlecode.com/svn/trunk@591 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'docs/samples/save_stream.cpp')
-rw-r--r-- | docs/samples/save_stream.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/docs/samples/save_stream.cpp b/docs/samples/save_stream.cpp index 65be76b..39e99eb 100644 --- a/docs/samples/save_stream.cpp +++ b/docs/samples/save_stream.cpp @@ -4,13 +4,15 @@ int main()
{
- // get a test document
- pugi::xml_document doc;
- doc.load("<foo bar='baz'><call>hey</call></foo>");
+ // get a test document
+ pugi::xml_document doc;
+ doc.load("<foo bar='baz'><call>hey</call></foo>");
- //[code_save_stream
- // save document to standard output
- std::cout << "Document:\n";
- doc.save(std::cout);
- //]
+ //[code_save_stream
+ // save document to standard output
+ std::cout << "Document:\n";
+ doc.save(std::cout);
+ //]
}
+
+// vim:et
|