Is it possible to deserialize a binary flatbuffers object that represents a non-root table?
Suppose the following flatbuffers schema:
table Foo {
...
}
table Bar {
value:[Foo];
}
root_type Bar;
Suppose we have access to the binary data that represents the Foo
object. Is it possible to deserialize this binary to an object of class Foo
? Looking at my c++ generated header file, I do not see any generated function like GetFoo()
.