Revision 1210cb0004d57b33cdf76364b40f1ddc8d4b7e8b authored by Wenqing Wang on 29 September 2021, 14:25:47 UTC, committed by Wenqing Wang on 02 November 2021, 08:06:25 UTC
1 parent 7ea6c2a
Raw File
CreateOutput.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 <memory>
#include <string>
#include <vector>

namespace ChemistryLib
{
namespace PhreeqcIOData
{
struct Output;
struct ChemicalSystem;
struct UserPunch;

std::unique_ptr<Output> createOutput(
    ChemicalSystem const& chemical_system,
    std::unique_ptr<UserPunch> const& user_punch,
    bool const use_high_precision,
    std::string const& project_file_name);
}  // namespace PhreeqcIOData
}  // namespace ChemistryLib
back to top