Revision 20886e2691c1515554931347fba72e1d9b92a549 authored by Wenqing Wang on 19 May 2021, 13:13:38 UTC, committed by Dmitry Yu. Naumov on 07 October 2021, 21:11:23 UTC
1 parent c6abf92
Raw File
Exchange.cpp
/**
 * \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
 *
 */

#include "Exchange.h"

#include <ostream>

namespace ChemistryLib
{
namespace PhreeqcIOData
{
void ExchangeSite::print(std::ostream& os,
                         std::size_t const chemical_system_id) const
{
    os << name << " " << (*molality)[chemical_system_id] << "\n";
}
}  // namespace PhreeqcIOData
}  // namespace ChemistryLib
back to top