---------------------------------------------------------------------------
| 1199 | |
| 1200 | //--------------------------------------------------------------------------- |
| 1201 | void vtkSMSessionProxyManager::LoadXMLState( |
| 1202 | const char* filename, vtkSMStateLoader* loader /*=nullptr*/, vtkTypeUInt32 location) |
| 1203 | { |
| 1204 | const std::string contents = this->LoadString(filename, location); |
| 1205 | vtkPVXMLParser* parser = vtkPVXMLParser::New(); |
| 1206 | parser->Parse(contents.c_str()); |
| 1207 | |
| 1208 | this->LoadXMLState(parser->GetRootElement(), loader); |
| 1209 | parser->Delete(); |
| 1210 | } |
| 1211 | |
| 1212 | //--------------------------------------------------------------------------- |
| 1213 | void vtkSMSessionProxyManager::LoadXMLState(vtkPVXMLElement* rootElement, |
nothing calls this directly
no test coverage detected