diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-01-22 00:55:18 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-01-22 00:55:18 +0000 |
commit | 5f2304b7d7d8cb9ba156b18a86b3c84343e92241 (patch) | |
tree | 068010ce3738c46cbc3687a91f96191ea64ab836 /py/python/Ice.py | |
parent | adding support for stringification (diff) | |
download | ice-5f2304b7d7d8cb9ba156b18a86b3c84343e92241.tar.bz2 ice-5f2304b7d7d8cb9ba156b18a86b3c84343e92241.tar.xz ice-5f2304b7d7d8cb9ba156b18a86b3c84343e92241.zip |
adding stringification
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index c3f5486d5de..d2e06fdee84 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -97,6 +97,7 @@ def createTempClass(): # IcePy._t_Object = IcePy.declareClass('::Ice::Object') IcePy._t_ObjectPrx = IcePy.declareProxy('::Ice::Object') +IcePy._t_LocalObject = IcePy.declareClass('::Ice::LocalObject') # # Slice checksum dictionary. @@ -620,6 +621,9 @@ Object._op_ice_ping = IcePy.Operation('ice_ping', OperationMode.Nonmutating, Fal Object._op_ice_ids = IcePy.Operation('ice_ids', OperationMode.Nonmutating, False, (), (), _t_StringSeq, ()) Object._op_ice_id = IcePy.Operation('ice_id', OperationMode.Nonmutating, False, (), (), IcePy._t_string, ()) +IcePy._t_LocalObject = IcePy.defineClass('::Ice::LocalObject', LocalObject, False, None, (), ()) +LocalObject.ice_type = IcePy._t_LocalObject + # # Annotate Ice::Identity. # |