forked from lyzz0612/csb2csd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SingleNodeOptions.py
34 lines (27 loc) · 1.15 KB
/
SingleNodeOptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# automatically generated by the FlatBuffers compiler, do not modify
# namespace: flatbuffers
import flatbuffers
class SingleNodeOptions(object):
__slots__ = ['_tab']
@classmethod
def GetRootAsSingleNodeOptions(cls, buf, offset):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = SingleNodeOptions()
x.Init(buf, n + offset)
return x
# SingleNodeOptions
def Init(self, buf, pos):
self._tab = flatbuffers.table.Table(buf, pos)
# SingleNodeOptions
def NodeOptions(self):
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
if o != 0:
x = self._tab.Indirect(o + self._tab.Pos)
from .WidgetOptions import WidgetOptions
obj = WidgetOptions()
obj.Init(self._tab.Bytes, x)
return obj
return None
def SingleNodeOptionsStart(builder): builder.StartObject(1)
def SingleNodeOptionsAddNodeOptions(builder, nodeOptions): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(nodeOptions), 0)
def SingleNodeOptionsEnd(builder): return builder.EndObject()