swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: d7517b58f1e2958f232c322463e4f69b8b11f747 authored by Lars Bilke on 05 April 2021, 19:15:29 UTC
[web] Fixed and updated links in IDE page.
Tip revision: d7517b5
CreateInitialAqueousSolution.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 <string>
#include <vector>

namespace BaseLib
{
class ConfigTree;
}

namespace ChemistryLib
{
namespace PhreeqcKernelData
{
class InitialAqueousSolution;

InitialAqueousSolution createInitialAqueousSolution(
    BaseLib::ConfigTree const& config,
    std::vector<std::pair<int, std::string>> const&
        process_id_to_component_name_map);
}  // namespace PhreeqcKernelData
}  // namespace ChemistryLib
back to top