OGS
Exchange.cpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#include "Exchange.h"
5
6#include <ostream>
7
8namespace ChemistryLib
9{
10namespace PhreeqcIOData
11{
12void ExchangeSite::print(std::ostream& os,
13 std::size_t const chemical_system_id) const
14{
15 os << name << " " << (*molality)[chemical_system_id] << "\n";
16}
17} // namespace PhreeqcIOData
18} // namespace ChemistryLib
void print(std::ostream &os, std::size_t const chemical_system_id) const
Definition Exchange.cpp:12