Revision c9c4b019d9d754ab21abe45bc92cc95c616b37f6 authored by Lars Bilke on 16 March 2021, 07:00:40 UTC, committed by Lars Bilke on 16 March 2021, 07:00:40 UTC
[ci] Enable mfront in serial container

See merge request ogs/ogs!3508
2 parent s dd9b10a + f64b0e2
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