|
15 | 15 | #ifndef AUTOWARE__UNIVERSE_UTILS__ROS__DEBUG_TRAITS_HPP_
|
16 | 16 | #define AUTOWARE__UNIVERSE_UTILS__ROS__DEBUG_TRAITS_HPP_
|
17 | 17 |
|
| 18 | +#include <autoware_internal_debug_msgs/msg/bool_stamped.hpp> |
| 19 | +#include <autoware_internal_debug_msgs/msg/float32_multi_array_stamped.hpp> |
| 20 | +#include <autoware_internal_debug_msgs/msg/float32_stamped.hpp> |
| 21 | +#include <autoware_internal_debug_msgs/msg/float64_multi_array_stamped.hpp> |
| 22 | +#include <autoware_internal_debug_msgs/msg/float64_stamped.hpp> |
| 23 | +#include <autoware_internal_debug_msgs/msg/int32_multi_array_stamped.hpp> |
| 24 | +#include <autoware_internal_debug_msgs/msg/int32_stamped.hpp> |
| 25 | +#include <autoware_internal_debug_msgs/msg/int64_multi_array_stamped.hpp> |
| 26 | +#include <autoware_internal_debug_msgs/msg/int64_stamped.hpp> |
| 27 | +#include <autoware_internal_debug_msgs/msg/string_stamped.hpp> |
18 | 28 | #include <tier4_debug_msgs/msg/bool_stamped.hpp>
|
19 | 29 | #include <tier4_debug_msgs/msg/float32_multi_array_stamped.hpp>
|
20 | 30 | #include <tier4_debug_msgs/msg/float32_stamped.hpp>
|
@@ -84,6 +94,58 @@ template <>
|
84 | 94 | struct is_debug_message<tier4_debug_msgs::msg::StringStamped> : std::true_type
|
85 | 95 | {
|
86 | 96 | };
|
| 97 | + |
| 98 | +template <> |
| 99 | +struct is_debug_message<autoware_internal_debug_msgs::msg::BoolStamped> : std::true_type |
| 100 | +{ |
| 101 | +}; |
| 102 | + |
| 103 | +template <> |
| 104 | +struct is_debug_message<autoware_internal_debug_msgs::msg::Float32MultiArrayStamped> |
| 105 | +: std::true_type |
| 106 | +{ |
| 107 | +}; |
| 108 | + |
| 109 | +template <> |
| 110 | +struct is_debug_message<autoware_internal_debug_msgs::msg::Float32Stamped> : std::true_type |
| 111 | +{ |
| 112 | +}; |
| 113 | + |
| 114 | +template <> |
| 115 | +struct is_debug_message<autoware_internal_debug_msgs::msg::Float64MultiArrayStamped> |
| 116 | +: std::true_type |
| 117 | +{ |
| 118 | +}; |
| 119 | + |
| 120 | +template <> |
| 121 | +struct is_debug_message<autoware_internal_debug_msgs::msg::Float64Stamped> : std::true_type |
| 122 | +{ |
| 123 | +}; |
| 124 | + |
| 125 | +template <> |
| 126 | +struct is_debug_message<autoware_internal_debug_msgs::msg::Int32MultiArrayStamped> : std::true_type |
| 127 | +{ |
| 128 | +}; |
| 129 | + |
| 130 | +template <> |
| 131 | +struct is_debug_message<autoware_internal_debug_msgs::msg::Int32Stamped> : std::true_type |
| 132 | +{ |
| 133 | +}; |
| 134 | + |
| 135 | +template <> |
| 136 | +struct is_debug_message<autoware_internal_debug_msgs::msg::Int64MultiArrayStamped> : std::true_type |
| 137 | +{ |
| 138 | +}; |
| 139 | + |
| 140 | +template <> |
| 141 | +struct is_debug_message<autoware_internal_debug_msgs::msg::Int64Stamped> : std::true_type |
| 142 | +{ |
| 143 | +}; |
| 144 | + |
| 145 | +template <> |
| 146 | +struct is_debug_message<autoware_internal_debug_msgs::msg::StringStamped> : std::true_type |
| 147 | +{ |
| 148 | +}; |
87 | 149 | } // namespace autoware::universe_utils::debug_traits
|
88 | 150 |
|
89 | 151 | #endif // AUTOWARE__UNIVERSE_UTILS__ROS__DEBUG_TRAITS_HPP_
|
0 commit comments