----------------------------------------------------------------------------
| 707 | |
| 708 | //---------------------------------------------------------------------------- |
| 709 | io::VTKFile::VTKFile(MPI_Comm comm, const std::filesystem::path& filename, |
| 710 | const std::string&) |
| 711 | : _filename(filename), _comm(comm) |
| 712 | { |
| 713 | _pvd_xml = std::make_unique<pugi::xml_document>(); |
| 714 | assert(_pvd_xml); |
| 715 | pugi::xml_node vtk_node = _pvd_xml->append_child("VTKFile"); |
| 716 | vtk_node.append_attribute("type") = "Collection"; |
| 717 | vtk_node.append_attribute("version") = "1.0"; |
| 718 | vtk_node.append_child("Collection"); |
| 719 | } |
| 720 | //---------------------------------------------------------------------------- |
| 721 | io::VTKFile::~VTKFile() |
| 722 | { |
nothing calls this directly
no outgoing calls
no test coverage detected