OGS
ReactionRate.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <string>
14#include <vector>
15
16namespace ChemistryLib
17{
18namespace PhreeqcKernelData
19{
21{
22public:
23 ReactionRate(std::string kinetic_reactant_,
24 std::vector<std::string> const& statements);
25
26 std::string const& commands() const { return _commands; }
27
28public:
29 std::string const kinetic_reactant;
30
31private:
32 std::string _commands;
33};
34} // namespace PhreeqcKernelData
35} // namespace ChemistryLib
ReactionRate(std::string kinetic_reactant_, std::vector< std::string > const &statements)