Revision 7095bad124f04f2e2aa47863ea1215a5392a3b4f authored by Lars Bilke on 24 February 2021, 08:56:19 UTC, committed by Lars Bilke on 08 March 2021, 19:43:09 UTC
1 parent a61d381
Raw File
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