Revision bf7c7494de3d917ee19df4ac1ab17a7ec016abb0 authored by Lars Bilke on 02 November 2021, 19:30:16 UTC, committed by Lars Bilke on 02 November 2021, 19:30:16 UTC
Add branch coverage to reports.

See merge request ogs/ogs!3864
2 parent s 61b7b0f + 213412a
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