From afaa48ac8b5d863ccbf42a01a826b50b308f0782 Mon Sep 17 00:00:00 2001 From: Alexandra Heuschling Date: Thu, 5 Nov 2020 21:26:16 +0100 Subject: [PATCH] add new type to PropertyType enum --- src/OpenMesh/Core/IO/OMFormat.hh | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/OpenMesh/Core/IO/OMFormat.hh b/src/OpenMesh/Core/IO/OMFormat.hh index b81bfabf..5c8164c8 100644 --- a/src/OpenMesh/Core/IO/OMFormat.hh +++ b/src/OpenMesh/Core/IO/OMFormat.hh @@ -278,17 +278,18 @@ namespace OMFormat { //----------------------------------------------------------------------------------------------------------------------------------- //this enum stores the type of the property so that it can be recovered enum PropertyType { - BoolType = 0x00, - UCharType= 0x01, - CharType = 0x02, - ShortType = 0x03, - UIntType = 0x04, - IntType = 0x05, - ULongType = 0x06, - LongType = 0x07, - FloatType = 0x08, - DoubleType = 0x09, - VecDoubleType = 0x0a + UnknownType = 0x00, + BoolType = 0x01, + UCharType= 0x02, + CharType = 0x03, + ShortType = 0x04, + UIntType = 0x05, + IntType = 0x06, + ULongType = 0x07, + LongType = 0x08, + FloatType = 0x09, + DoubleType = 0x0a, + VecDoubleType = 0x0b }; //-----------------------------------------------------------------------------------------------------------------------------------