diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-09-20 14:56:29 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-09-20 14:56:29 +0800 |
commit | 1122cb76c9d14c00e892d76ba088e33da3b81d11 (patch) | |
tree | d753f950b1dda0f6a48a431f13f21c22cb12727f /py/python/Ice.py | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2478 (diff) | |
download | ice-1122cb76c9d14c00e892d76ba088e33da3b81d11.tar.bz2 ice-1122cb76c9d14c00e892d76ba088e33da3b81d11.tar.xz ice-1122cb76c9d14c00e892d76ba088e33da3b81d11.zip |
added blobject support to python.
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index ae0dba80962..32d9696314f 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -73,6 +73,14 @@ class Object(object): class LocalObject(object): pass +class Blobject(Object): + def ice_invoke(self, bytes, current): + pass + +class BlobjectAsync(Object): + def ice_invoke_async(self, cb, bytes, current): + pass + # # Exceptions. # |