OGS
createMeshFromElementSelection.h
Go to the documentation of this file.
1
12#pragma once
13
14#include <memory>
15#include <string>
16#include <vector>
17
18namespace MeshLib
19{
20class Mesh;
21class Element;
22
27std::unique_ptr<Mesh> createMeshFromElementSelection(
28 std::string mesh_name, std::vector<Element*> const& elements);
29} // namespace MeshLib
std::unique_ptr< MeshLib::Mesh > createMeshFromElementSelection(std::string mesh_name, std::vector< MeshLib::Element * > const &elements)