* @brief Sets a double field on a protobuf Struct. */
| 156 | * @brief Sets a double field on a protobuf Struct. |
| 157 | */ |
| 158 | static inline void setNumber(google::protobuf::Struct& s, const char* key, double val) |
| 159 | { |
| 160 | (*s.mutable_fields())[key].set_number_value(val); |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * @brief Converts a Frame directly to a protobuf Struct. |