https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 654d90da5e30e62bfa68faf78492ebe221d62a95 authored by joergbuchwald on 01 October 2021, 13:28:26 UTC
Merge branch 'van_genuchten_exp' into 'master'
Tip revision: 654d90d
SearchAllNodes.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 MeshGeoToolsLib
{
enum class SearchAllNodes : bool
{
    Yes = true,
    No = false
};

} // end namespace MeshGeoToolsLib
back to top