From bb0a6809222e5d4a419c6e80ef40d921dc8ff9aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com> Date: Mon, 18 Jul 2022 23:29:54 +0200 Subject: [PATCH] Add generation file info comment to the pvd files --- src/output/VTKWriter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/output/VTKWriter.cpp b/src/output/VTKWriter.cpp index 8295c351f..277c0d5cc 100644 --- a/src/output/VTKWriter.cpp +++ b/src/output/VTKWriter.cpp @@ -615,6 +615,7 @@ VTKWriter::_write(const std::shared_ptr<const MeshType>& mesh, std::ofstream fout(m_base_filename + ".pvd"); fout << "<?xml version=\"1.0\"?>\n"; + fout << _getDateAndVersionComment(); fout << "<VTKFile type=\"Collection\" version=\"0.1\">\n"; fout << "<Collection>\n"; -- GitLab