Revision f29e0472ac022dcb4f708619c7960e531d9dfe4a authored by Tobias Meisel on 22 April 2021, 10:24:40 UTC, committed by Dmitry Yu. Naumov on 23 April 2021, 18:42:24 UTC
1 parent b97e479
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