Skip to content

Commit

Permalink
Add missing Python files from type cast commit.
Browse files Browse the repository at this point in the history
Change-Id: I800119d8fe19f4c3e95772aba629ef8b2deb9e4b
  • Loading branch information
Wouter van Oortmerssen committed Aug 12, 2015
1 parent 9a1ab50 commit e9202d8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/MyGame/Example/Any.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
class Any(object):
NONE = 0
Monster = 1
TestSimpleTableWithEnum = 2

23 changes: 23 additions & 0 deletions tests/MyGame/Example/TestSimpleTableWithEnum.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# automatically generated, do not modify

# namespace: Example

import flatbuffers

class TestSimpleTableWithEnum(object):
__slots__ = ['_tab']

# TestSimpleTableWithEnum
def Init(self, buf, pos):
self._tab = flatbuffers.table.Table(buf, pos)

# TestSimpleTableWithEnum
def Color(self):
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
if o != 0:
return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
return 2

def TestSimpleTableWithEnumStart(builder): builder.StartObject(1)
def TestSimpleTableWithEnumAddColor(builder, color): builder.PrependInt8Slot(0, color, 2)
def TestSimpleTableWithEnumEnd(builder): return builder.EndObject()

0 comments on commit e9202d8

Please sign in to comment.