https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 50e47e9a6678e3959b8643af1e7ebc383b9ec79b authored by Thomas Fischer on 14 October 2021, 12:43:32 UTC
[GL] Forbit automatic generation of constr. and assignment ops.
Tip revision: 50e47e9
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