diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-01-11 14:21:57 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-01-11 14:21:57 +0000 |
commit | d36c00e62153494aca14d4beae110022c4d4b679 (patch) | |
tree | 30823dc9ba0ab2593f0edc8127a769ce3f05fb1a /py/python/Ice.py | |
parent | Minor refactoring of IcePatch2. (diff) | |
download | ice-d36c00e62153494aca14d4beae110022c4d4b679.tar.bz2 ice-d36c00e62153494aca14d4beae110022c4d4b679.tar.xz ice-d36c00e62153494aca14d4beae110022c4d4b679.zip |
adding support for default context
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index fd1d0f7fc5c..314bac3d66d 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -164,6 +164,12 @@ class CommunicatorI(Communicator): def findObjectFactory(self, id): return self._impl.findObjectFactory(id) + def setDefaultContext(self, ctx): + return self._impl.setDefaultContext(ctx) + + def getDefaultContext(self): + return self._impl.getDefaultContext() + def getProperties(self): properties = self._impl.getProperties() return PropertiesI(properties) |