| 677 | } |
| 678 | |
| 679 | bool TiXmlDocument::LoadFile() |
| 680 | { |
| 681 | // See STL_STRING_BUG below. |
| 682 | StringToBuffer buf( value ); |
| 683 | |
| 684 | if ( buf.buffer && LoadFile( buf.buffer ) ) |
| 685 | return true; |
| 686 | |
| 687 | return false; |
| 688 | } |
| 689 | |
| 690 | |
| 691 | bool TiXmlDocument::SaveFile() const |
no test coverage detected