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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
#
# File: F2_Impl.py
# Symbol: Inherit.F2-v1.1
# Symbol Type: class
# Babel Version: 0.10.2
# Description: Implementation of sidl class Inherit.F2 in Python.
#
# WARNING: Automatically generated; changes will be lost
#
# babel-version = 0.10.2
#
# DO-NOT-DELETE splicer.begin(_initial)
# Put your code here...
# DO-NOT-DELETE splicer.end(_initial)
import Inherit.A
import sidl.ClassInfo
import Inherit.C
import Inherit.F2
import Inherit.B
import sidl.BaseInterface
import sidl.BaseClass
# DO-NOT-DELETE splicer.begin(_before_type)
# Put your code here...
# DO-NOT-DELETE splicer.end(_before_type)
class F2:
# All calls to sidl methods should use __IORself
def __init__(self, IORself):
self.__IORself = IORself
# DO-NOT-DELETE splicer.begin(__init__)
# Put your code here...
# DO-NOT-DELETE splicer.end(__init__)
def c(self):
#
# sidl EXPECTED RETURN VALUE(s)
# =============================
# string _return
#
# DO-NOT-DELETE splicer.begin(c)
return "F2.c"
# DO-NOT-DELETE splicer.end(c)
def a(self):
#
# sidl EXPECTED RETURN VALUE(s)
# =============================
# string _return
#
# DO-NOT-DELETE splicer.begin(a)
return "F2.a"
# DO-NOT-DELETE splicer.end(a)
def b(self):
#
# sidl EXPECTED RETURN VALUE(s)
# =============================
# string _return
#
# DO-NOT-DELETE splicer.begin(b)
return "F2.b"
# DO-NOT-DELETE splicer.end(b)
def f(self):
#
# sidl EXPECTED RETURN VALUE(s)
# =============================
# string _return
#
# DO-NOT-DELETE splicer.begin(f)
return "F2.f"
# DO-NOT-DELETE splicer.end(f)
# DO-NOT-DELETE splicer.begin(_final)
# Put your code here...
# DO-NOT-DELETE splicer.end(_final)
|