mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
(C++ only for now). Also fixed vector of union support in the object API. Bug: 36902939 Change-Id: I935f4cc2c303a4728e26c7916a8ec0adcd6f84cb Tested: on Linux.
32 lines
570 B
Plaintext
32 lines
570 B
Plaintext
// Demonstrates the ability to have vectors of unions, and also to
|
|
// store structs and strings in unions.
|
|
|
|
table Attacker {
|
|
sword_attack_damage: int;
|
|
}
|
|
|
|
struct Rapunzel {
|
|
hair_length: int;
|
|
}
|
|
|
|
struct BookReader {
|
|
books_read: int;
|
|
}
|
|
|
|
union Character {
|
|
MuLan: Attacker, // Can have name be different from type.
|
|
Rapunzel, // Or just both the same, as before.
|
|
Belle: BookReader,
|
|
BookFan: BookReader,
|
|
Other: string,
|
|
Unused: string
|
|
}
|
|
|
|
table Movie {
|
|
main_character: Character;
|
|
characters: [Character];
|
|
}
|
|
|
|
root_type Movie;
|
|
file_identifier "MOVI";
|