Buffer Verification.
uint8_t buffer [];
int size;
auto verifier = flatbuffers::Verifier (buffer, size);
if (VerifyAnotherTableBuffer (verifier)) {
    auto another_table = GetAnotherTable (buffer);
}
Buffer Access.
cout << another_table->an_int (); cout << another_table->a_long (); cout << another_table->a_string ()->str ();