diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-28 21:38:46 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-28 21:38:46 +0000 |
commit | 8b1a9951559fc6420aad68c4f4e23f8b470cec0c (patch) | |
tree | 03041d4da413407b3a4adfe92201c66daa9c5e11 /docs/samples/load_stream.cpp | |
parent | 39187a1f04d3e1fbaa6465a262a9bfd146c5287a (diff) |
docs: Added memory and stream loading documentation
git-svn-id: http://pugixml.googlecode.com/svn/trunk@551 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'docs/samples/load_stream.cpp')
-rw-r--r-- | docs/samples/load_stream.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/samples/load_stream.cpp b/docs/samples/load_stream.cpp index f97949d..830ba4b 100644 --- a/docs/samples/load_stream.cpp +++ b/docs/samples/load_stream.cpp @@ -33,8 +33,10 @@ int main() pugi::xml_document doc;
{
+ //[code_load_stream
std::ifstream stream("weekly-utf-8.xml");
pugi::xml_parse_result result = doc.load(stream);
+ //]
// first character of root name: U+9031, year: 1997
print_doc("UTF8 file from narrow stream", doc, result);
|