https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 3f359feee49b7ecf3476c248845e430f11e8a049 authored by Lars Bilke on 04 September 2024, 16:22:29 UTC
6.5.3
Tip revision: 3f359fe
MeshPropertyDataType.h
/**
 * \file
 * \author Tobias Meisel
 * \date   2020-12-15
 * \brief  Enum for all propertyVector data types
 * \copyright
 * Copyright (c) 2012-2024, 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

// TODO (tm) If used on several other places move definition of propertyVector
enum class MeshPropertyDataType
{
    unknown = 0,
    float64,
    float32,
    int32,
    int64,
    uint32,
    uint64,
    int8,
    uint8,
    char_native,
    uchar,
    enum_length
};
back to top