swh:1:snp:6088ab52ef49920e01e3f334cdf4d5d6c8a822b9
Raw File
Tip revision: 107be7c719a2e08b4bb40e49c320369b00ef7841 authored by Lars Bilke on 05 July 2021, 12:39:06 UTC
[ci] Added native Ubuntu job.
Tip revision: 107be7c
ReactionRate.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 ChemistryLib
{
namespace PhreeqcKernelData
{
class ReactionRate
{
public:
    ReactionRate(std::string kinetic_reactant_,
                 std::vector<std::string> statements);

    std::string const& commands() const { return _commands; }

public:
    std::string const kinetic_reactant;

private:
    std::string _commands;
};
}  // namespace PhreeqcKernelData
}  // namespace ChemistryLib
back to top