/** * \file * * \copyright * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org) * Distributed under a Modified BSD License. * See accompanying file LICENSE.txt or * http://www.opengeosys.org/project/license * */ #pragma once #include #include #include namespace MeshLib { class Mesh; std::unique_ptr createMaterialIDsBasedSubMesh( MeshLib::Mesh const& mesh, std::vector const& material_ids, std::string const& name_for_created_mesh); } // namespace MeshLib