| 673 | /// is serialized. |
| 674 | template <class T> |
| 675 | void SerializeToBuffer(const T* obj, uint32_t* len, uint8_t** buffer) { |
| 676 | SerializeObject(obj); |
| 677 | mem_buffer_->getBuffer(buffer, len); |
| 678 | } |
| 679 | |
| 680 | template <class T> |
| 681 | void SerializeToString(const T* obj, std::string* result) { |
no outgoing calls
no test coverage detected