diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-09 12:50:43 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-09 12:50:43 +0000 |
commit | 765822ab9caa9c8079792f17ca40a885bc8261ea (patch) | |
tree | 40ee66aaffe1813ba3e82f3133213e0e43c5cea4 /py/python/Ice.py | |
parent | More minor fixes (diff) | |
download | ice-765822ab9caa9c8079792f17ca40a885bc8261ea.tar.bz2 ice-765822ab9caa9c8079792f17ca40a885bc8261ea.tar.xz ice-765822ab9caa9c8079792f17ca40a885bc8261ea.zip |
Added identityToString and stringToIdentity to Communicator
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 a427b811e6a..268e7e4ed56 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -186,6 +186,12 @@ class CommunicatorI(Communicator): def proxyToString(self, obj): return self._impl.proxyToString(obj) + def stringToIdentity(self, str): + return self._impl.stringToIdentity(str) + + def identityToString(self, obj): + return self._impl.identityToString(obj) + def createObjectAdapter(self, name): adapter = self._impl.createObjectAdapter(name) return ObjectAdapterI(adapter) |