#
# File:          G2_Impl.py
# Symbol:        Inherit.G2-v1.1
# Symbol Type:   class
# Babel Version: 0.10.2
# Description:   Implementation of sidl class Inherit.G2 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.G2
import Inherit.A
import sidl.ClassInfo
import Inherit.D
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 G2:

  # 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 a(self):
    #
    # sidl EXPECTED RETURN VALUE(s)
    # =============================
    # string _return
    #

    # DO-NOT-DELETE splicer.begin(a)
    return "G2.a"
    # DO-NOT-DELETE splicer.end(a)

  def d(self):
    #
    # sidl EXPECTED RETURN VALUE(s)
    # =============================
    # string _return
    #

    # DO-NOT-DELETE splicer.begin(d)
    return "G2.d"
    # DO-NOT-DELETE splicer.end(d)

  def g(self):
    #
    # sidl EXPECTED RETURN VALUE(s)
    # =============================
    # string _return
    #

    # DO-NOT-DELETE splicer.begin(g)
    return "G2.g"
    # DO-NOT-DELETE splicer.end(g)

# DO-NOT-DELETE splicer.begin(_final)
# Put your code here...
# DO-NOT-DELETE splicer.end(_final)
