Revision 79efe51271f057038c1a50ef05359e6138a98170 authored by Lars Bilke on 17 February 2021, 12:02:02 UTC, committed by Lars Bilke on 19 February 2021, 08:55:56 UTC
Runs all ctests with a RUNTIME < 5 including utils tests.

Creates combined reports in these formats:

- html (build/coverage/coverage_report/index.html)
- json (build/coverage/coverage.json)
- xml (build/coverage/coverage.xml)
1 parent 51a2349
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