OGS
CreateSearchLength.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6#include <memory>
7
8namespace BaseLib
9{
10class ConfigTree;
11}
12
13namespace MeshLib
14{
15class Mesh;
16}
17
18namespace MeshGeoToolsLib
19{
20class SearchLength;
21
26std::unique_ptr<MeshGeoToolsLib::SearchLength> createSearchLengthAlgorithm(
27 BaseLib::ConfigTree const& external_config, MeshLib::Mesh const& mesh);
28} // end namespace MeshGeoToolsLib
std::unique_ptr< MeshGeoToolsLib::SearchLength > createSearchLengthAlgorithm(BaseLib::ConfigTree const &external_config, MeshLib::Mesh const &mesh)