I have a nested flatbuffer as following:
struct Flat_A {
// s.t
}
struct Flat_B {
// s.t
}
struct Flat_C {
flata : Flat_A
flatb : Flat_B
}
I want to create flatbuffer of flata : Flat_A first (in a difference flatbufferbuilder with its parent), and then copy this flatbuffer to the parent buffer(Flat_C).
I see function CopyTable, but it seem that it just copy to a NEW flatbuffer, not to an EXIST buffer like Flat_C. Is there any way to do that ?