Revision b16190f1851378f5b34ad48895e1de8d4c67ea5a authored by Tom Fischer on 21 July 2023, 15:08:42 UTC, committed by Tom Fischer on 21 July 2023, 15:08:42 UTC
Pass fixed output times to time stepper

See merge request ogs/ogs!4652
2 parent s ef05d75 + 5205dc7
Raw File
GeoType.h
/**
 * \file
 * \author Thomas Fischer
 * \date   2010-06-17
 * \brief  Definition of the GEOTYPE enumeration.
 *
 * \copyright
 * Copyright (c) 2012-2023, 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