------------------------------------------------------------------------------
| 176 | |
| 177 | //------------------------------------------------------------------------------ |
| 178 | int vtkXMLParser::CreateParser() |
| 179 | { |
| 180 | if (this->Parser) |
| 181 | { |
| 182 | vtkErrorMacro("Parser already created"); |
| 183 | return 0; |
| 184 | } |
| 185 | // Create the expat XML parser. |
| 186 | this->Parser = XML_ParserCreate(this->Encoding); |
| 187 | return this->Parser ? 1 : 0; |
| 188 | } |
| 189 | |
| 190 | //------------------------------------------------------------------------------ |
| 191 | int vtkXMLParser::InitializeParser() |
no test coverage detected