https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 759e617f726beca2ac03ddccd4f9858a816f2036 authored by Dmitry Yu. Naumov on 17 May 2021, 13:36:49 UTC
Merge branch 'MathLibPrivateMembersStyle' into 'master'
Tip revision: 759e617
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