OGS
InitialAqueousSolution.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <phreeqcpp/ISolution.h>
14
15#include <map>
16#include <string>
17
18namespace ChemistryLib
19{
20namespace PhreeqcKernelData
21{
22class Component final : public cxxISolutionComp
23{
24public:
25 explicit Component(std::string const& name) { description = name; }
26};
27
28class InitialAqueousSolution final : public cxxISolution
29{
30public:
32 std::map<std::string, cxxISolutionComp>& components);
33};
34} // namespace PhreeqcKernelData
35} // namespace ChemistryLib
InitialAqueousSolution(std::map< std::string, cxxISolutionComp > &components)