doc/api/libbabeltrace2/DoxygenLayout.xml: use `topics` tab
[babeltrace.git] / src / cpp-common / bt2c / fmt.hpp
index 8af3d71e49ca84f0205fb6f20e112ea84e5a5aed..ab3d6bc875de3514ac5fa2fb4b8e2548f38cece4 100644 (file)
@@ -4,22 +4,37 @@
  * SPDX-License-Identifier: MIT
  */
 
-#include "common/common.h"
-#include "cpp-common/bt2/message.hpp"
-#include "cpp-common/bt2c/uuid.hpp"
 #include "cpp-common/vendor/fmt/format.h" /* IWYU pragma: keep */
+#include "cpp-common/vendor/wise-enum/wise_enum.h"
+
+#include "uuid.hpp"
+
+namespace internal {
+
+template <typename T>
+using EnableIfIsWiseEnum =
+    typename std::enable_if<wise_enum::is_wise_enum<T>::value, wise_enum::string_type>::type;
+
+} /* namespace internal */
 
 namespace bt2 {
 
-inline const char *format_as(const MessageType type)
+template <typename T>
+::internal::EnableIfIsWiseEnum<T> format_as(const T val) noexcept
 {
-    return bt_common_message_type_string(static_cast<bt_message_type>(type));
+    return wise_enum::to_string<T>(val);
 }
 
 } /* namespace bt2 */
 
 namespace bt2c {
 
+template <typename T>
+::internal::EnableIfIsWiseEnum<T> format_as(const T val) noexcept
+{
+    return wise_enum::to_string<T>(val);
+}
+
 inline std::string format_as(const UuidView uuid)
 {
     return uuid.str();
This page took 0.023543 seconds and 4 git commands to generate.