Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame^] | 1 | # automatically generated by the FlatBuffers compiler, do not modify |
| 2 | |
| 3 | # namespace: NamespaceB |
| 4 | |
| 5 | import flatbuffers |
| 6 | |
| 7 | class TableInNestedNS(object): |
| 8 | __slots__ = ['_tab'] |
| 9 | |
| 10 | @classmethod |
| 11 | def GetRootAsTableInNestedNS(cls, buf, offset): |
| 12 | n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset) |
| 13 | x = TableInNestedNS() |
| 14 | x.Init(buf, n + offset) |
| 15 | return x |
| 16 | |
| 17 | # TableInNestedNS |
| 18 | def Init(self, buf, pos): |
| 19 | self._tab = flatbuffers.table.Table(buf, pos) |
| 20 | |
| 21 | # TableInNestedNS |
| 22 | def Foo(self): |
| 23 | o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4)) |
| 24 | if o != 0: |
| 25 | return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos) |
| 26 | return 0 |
| 27 | |
| 28 | def TableInNestedNSStart(builder): builder.StartObject(1) |
| 29 | def TableInNestedNSAddFoo(builder, foo): builder.PrependInt32Slot(0, foo, 0) |
| 30 | def TableInNestedNSEnd(builder): return builder.EndObject() |