| 4597 | } |
| 4598 | |
| 4599 | xml_parse_result xml_document::load_file(const char* path, unsigned int options, xml_encoding encoding) |
| 4600 | { |
| 4601 | reset(); |
| 4602 | |
| 4603 | FILE* file = fopen(path, "rb"); |
| 4604 | |
| 4605 | return load_file_impl(*this, file, options, encoding); |
| 4606 | } |
| 4607 | |
| 4608 | xml_parse_result xml_document::load_file(const wchar_t* path, unsigned int options, xml_encoding encoding) |
| 4609 | { |
no test coverage detected