#!/usr/bin/python -i
# Pick up .so from the right place
import sys
sys.path.insert(0,"../src/")

try:
	import readline,rlcompleter
	readline.parse_and_bind("tab:complete")
except:
	pass


import CORBA, BasicTestIDL__POA, BasicTestIDL

class Foo(BasicTestIDL__POA.Foo):
	pass

orb = CORBA.ORB_init([],CORBA.ORB_ID)
#poa = orb.resolve_initial_references("RootPOA")
print dir()
