Revision 3aa616282b380f949257a2f086017170e352aa99 authored by renchao_lu on 24 June 2021, 18:50:34 UTC, committed by renchao_lu on 27 June 2021, 11:18:32 UTC
1 parent 9baf475
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