| 31 | const Encoding::Kind dsh_encoding_kind = Encoding::KIND_UNALIGNED_CDR; |
| 32 | |
| 33 | bool mb_copy(char& dest, const ACE_Message_Block& mb, size_t offset, const Encoding&) |
| 34 | { |
| 35 | dest = mb.rd_ptr()[offset]; |
| 36 | return true; |
| 37 | } |
| 38 | |
| 39 | template <typename T> |
| 40 | bool mb_copy(T& dest, const ACE_Message_Block& mb, size_t offset, const Encoding& encoding) |
no test coverage detected