Revision 5afcebd9245b51f0329a42c2c2afbf01534242a9 authored by Dmitri Naumov on 12 January 2023, 21:32:13 UTC, committed by Lars Bilke on 20 February 2023, 14:35:28 UTC
1 parent 663e3fc
Raw File
SearchAllNodes.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2023, 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