| 75 | |
| 76 | template<typename T> |
| 77 | static MessageRawDataObject EncodeGenericData(const T* data, uint16_t length){ |
| 78 | return MessageRawDataObject((uint8_t*)data, sizeof(T) * length); |
| 79 | } |
| 80 | |
| 81 | Message(){ |
| 82 | msize = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected