Revision dbcc976705791ced6e727956319e607e8efb3882 authored by renchao_lu on 02 May 2021, 18:09:11 UTC, committed by renchao_lu on 07 May 2021, 10:59:09 UTC
1 parent e6a1a1a
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 <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