Revision 0ad87c275a849cc2b38698a7194fb774a377a5ec authored by Lars Bilke on 13 January 2021, 14:32:49 UTC, committed by Lars Bilke on 13 January 2021, 14:32:49 UTC
May fix issues output from `git describe ...` missing the last tag.
1 parent 6d5f0fa
Raw File
ChemicalSolverType.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

namespace ChemistryLib
{
enum class ChemicalSolver
{
    Phreeqc,
    PhreeqcKernel
};
}  // namespace ChemistryLib
back to top