From 0fc53f6bfdd74b94b01a180c18b9c819c98ed92a Mon Sep 17 00:00:00 2001 From: Kerstin Keller Date: Fri, 6 Dec 2024 12:23:13 +0100 Subject: [PATCH] Deprecate SplitCombinedTopicType / CombinedTopicEncodingAndType. --- ecal/core/include/ecal/ecal_util.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ecal/core/include/ecal/ecal_util.h b/ecal/core/include/ecal/ecal_util.h index eb0dd0facb..5c23e11d3d 100644 --- a/ecal/core/include/ecal/ecal_util.h +++ b/ecal/core/include/ecal/ecal_util.h @@ -94,6 +94,7 @@ namespace eCAL * * @return std::pair(encoding, typename). **/ + ECAL_DEPRECATE_SINCE_6_0("Please refactor your code to use SDatatypeInformation. This function will be removed with eCAL 7") ECAL_API std::pair SplitCombinedTopicType(const std::string& combined_topic_type_); /** @@ -104,6 +105,7 @@ namespace eCAL * * @return "Old" typename. ( encoding:typename ). **/ + ECAL_DEPRECATE_SINCE_6_0("Please refactor your code to use SDatatypeInformation. This function will be removed with eCAL 7") ECAL_API std::string CombinedTopicEncodingAndType(const std::string& topic_encoding_, const std::string& topic_type_); } }