https://gitlab.opengeosys.org/ogs/ogs.git
Revision 15a2ed9b4709a613aead07eb3247983f7d66789f authored by Dmitry Yu. Naumov on 07 June 2021, 10:16:13 UTC, committed by Dmitry Yu. Naumov on 07 June 2021, 10:16:13 UTC
New Process: Stokes flow

See merge request ogs/ogs!3617
2 parent s a43db31 + 24d8bcc
Raw File
Tip revision: 15a2ed9b4709a613aead07eb3247983f7d66789f authored by Dmitry Yu. Naumov on 07 June 2021, 10:16:13 UTC
Merge branch 'Stokes' into 'master'
Tip revision: 15a2ed9
GeoType.h
/**
 * \file
 * \author Thomas Fischer
 * \date   2010-06-17
 * \brief  Definition of the GEOTYPE enumeration.
 *
 * \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

#include <string>

namespace GeoLib {

/**
 * \ingroup GeoLib
 */

enum class GEOTYPE {
    POINT,
    POLYLINE,
    SURFACE
};

std::string convertGeoTypeToString (GEOTYPE geo_type);

} // end namespace GeoLib
back to top