Revision 83c662b1fc8122f37a6908b8e0e659bc4d7a2f9e authored by Lars Bilke on 23 March 2023, 07:37:59 UTC, committed by Lars Bilke on 23 March 2023, 07:37:59 UTC
[cmake] Removed boost-mp11 from cpm (is part of Boost itself).

See merge request ogs/ogs!4537
2 parent s 032090c + c13a1b1
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