OGS
writeMeshToFile.h
Go to the documentation of this file.
1
10#pragma once
11
12#include <filesystem>
13#include <set>
14#include <string>
15
16namespace MeshLib
17{
18class Mesh;
19}
20
21namespace MeshLib::IO
22{
23int writeMeshToFile(MeshLib::Mesh const& mesh,
24 std::filesystem::path const& file_path,
25 std::set<std::string> variable_output_names = {});
26} // namespace MeshLib::IO
int writeMeshToFile(const MeshLib::Mesh &mesh, std::filesystem::path const &file_path, std::set< std::string > variable_output_names)