Hi,
i am not sure how todo this but I have a C++ struct which looks like this:
struct Foo{
msgpack::type::raw_ref message;
}
When i assign the value to the struct it will be binary 0xC4 10 (For a 16 bit binary value). But i was not able to read the values in Scala where my class looks like this:
class Foo {
var data: Array[Byte] = _
}
Can you guys think of any other solution?
Regards,
Thomas