https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: b1af5b5c83f2f95110032f55bbe693ecbe7a5a46 authored by Lars Bilke on 13 October 2021, 21:26:05 UTC
[cmake] Specify gtest version in versions.json.
Tip revision: b1af5b5
InitialAqueousSolution.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 <phreeqcpp/ISolution.h>

#include <map>
#include <string>

namespace ChemistryLib
{
namespace PhreeqcKernelData
{
class Component final : public cxxISolutionComp
{
public:
    explicit Component(std::string const& name) { description = name; }
};

class InitialAqueousSolution final : public cxxISolution
{
public:
    explicit InitialAqueousSolution(
        std::map<std::string, cxxISolutionComp>& components);
};
}  // namespace PhreeqcKernelData
}  // namespace ChemistryLib
back to top