https://gitlab.opengeosys.org/ogs/ogs.git
Revision 8ce92b13d3416ec479619d24dd384ec9ee88f19c authored by Lars Bilke on 08 February 2021, 19:37:26 UTC, committed by Lars Bilke on 15 February 2021, 14:12:59 UTC
Are already called in `ogs_add_library()`.
1 parent b583731
Raw File
Tip revision: 8ce92b13d3416ec479619d24dd384ec9ee88f19c authored by Lars Bilke on 08 February 2021, 19:37:26 UTC
[CMake] Cleanup, removed generate_export_header() calls.
Tip revision: 8ce92b1
CreateChemicalSolverInterface.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, 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 <memory>
#include <string>
#include <vector>

#include "ChemicalSolverType.h"

namespace BaseLib
{
class ConfigTree;
}

namespace MeshLib
{
class Mesh;
}

namespace ChemistryLib
{
class ChemicalSolverInterface;

template <ChemicalSolver chemical_solver>
std::unique_ptr<ChemicalSolverInterface> createChemicalSolverInterface(
    std::vector<std::unique_ptr<MeshLib::Mesh>> const& meshes,
    BaseLib::ConfigTree const& config, std::string const& output_directory);
}  // namespace ChemistryLib
back to top