swh:1:snp:6088ab52ef49920e01e3f334cdf4d5d6c8a822b9
Raw File
Tip revision: d246d36c557ec1e9f4bdd61813154e461dfe1410 authored by rinkk on 15 February 2021, 09:59:28 UTC
[gmsh] (optionally) writing physical curves to gmsh geo output
Tip revision: d246d36
CreateSolutionComponent.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 <vector>

namespace BaseLib
{
class ConfigTree;
}

namespace ChemistryLib
{
namespace PhreeqcIOData
{
struct Component;

std::vector<Component> createSolutionComponents(
    BaseLib::ConfigTree const& config);
}  // namespace PhreeqcIOData
}  // namespace ChemistryLib
back to top