23 lines
475 B
Python
23 lines
475 B
Python
"""
|
|
Auto-generated Python stub file from vtable_test.py
|
|
Module: vtable_test
|
|
"""
|
|
|
|
|
|
import stdio
|
|
import t, c
|
|
|
|
@t.CVTable
|
|
class Animal:
|
|
name: t.CInt
|
|
def __init__(self: Animal, n: t.CInt) -> t.CInt: pass
|
|
def GetName(self: Animal) -> t.CInt: pass
|
|
def Speak(self: Animal) -> t.CInt: pass
|
|
@t.CVTable
|
|
class Shape:
|
|
sides: t.CInt
|
|
def SetSides(self: Shape, n: t.CInt) -> t.CInt: pass
|
|
def GetSides(self: Shape) -> t.CInt: pass
|
|
|
|
def vtable_test() -> int: pass
|