flatbuffers/tests/namespace_test/namespace_test1.fbs

17 lines
159 B
Plaintext
Raw Normal View History

namespace NamespaceA.NamespaceB;
table TableInNestedNS
{
foo:int;
}
enum EnumInNestedNS:byte
{
A, B, C
}
struct StructInNestedNS
{
a:int;
b:int;
}