From 03f9698269d8a4025fae1ac5d86542d6a828c0a8 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 29 Jul 2023 15:57:15 +0200 Subject: [PATCH] Expose tagDataTypeString() --- tagvalue.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tagvalue.h b/tagvalue.h index 7b540d1..74c6a31 100644 --- a/tagvalue.h +++ b/tagvalue.h @@ -131,6 +131,8 @@ enum class TagDataType : unsigned int { DateTimeExpression, /**< date time expression, see CppUtilities::DateTimeExpression */ }; +TAG_PARSER_EXPORT std::string_view tagDataTypeString(TagDataType dataType); + /*! * \brief The TagValueComparisionOption enum specifies options for TagValue::compareTo(). */