| 5769 | |
| 5770 | #ifndef PUGIXML_NO_STL |
| 5771 | PUGI__FN xml_parse_result xml_document::load( |
| 5772 | std::basic_istream<char, std::char_traits<char>>& stream, |
| 5773 | unsigned int options, |
| 5774 | xml_encoding encoding) |
| 5775 | { |
| 5776 | reset(); |
| 5777 | |
| 5778 | return impl::load_stream_impl(*this, stream, options, encoding); |
| 5779 | } |
| 5780 | |
| 5781 | PUGI__FN xml_parse_result |
| 5782 | xml_document::load(std::basic_istream<wchar_t, std::char_traits<wchar_t>>& stream, unsigned int options) |