| 26 | } |
| 27 | |
| 28 | int cmXMLParser::Parse(char const* string) |
| 29 | { |
| 30 | return this->InitializeParser() && |
| 31 | this->ParseChunk(string, strlen(string)) && this->CleanupParser(); |
| 32 | } |
| 33 | |
| 34 | int cmXMLParser::ParseFile(char const* file) |
| 35 | { |
no test coverage detected