Revision 315f0ebb47b5cc7b9f73c75542dc24afebd06154 authored by Dmitry Yu. Naumov on 07 October 2021, 18:10:06 UTC, committed by Dmitry Yu. Naumov on 07 October 2021, 18:10:06 UTC
Fix HeatConductionProcess parallel (PETSc) build.

See merge request ogs/ogs!3831
2 parent s 5e0bec1 + 657d2a1
Raw File
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