diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-05-04 15:18:54 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-05-04 15:18:54 -0400 |
commit | db8f10e9004a6df07b0b5ca8e5f6dc77fffa37b0 (patch) | |
tree | 7f4241861765493366ff6cb76dc697e13d9ec3f6 /objective-c | |
parent | Fix whitespace (diff) | |
download | ice-db8f10e9004a6df07b0b5ca8e5f6dc77fffa37b0.tar.bz2 ice-db8f10e9004a6df07b0b5ca8e5f6dc77fffa37b0.tar.xz ice-db8f10e9004a6df07b0b5ca8e5f6dc77fffa37b0.zip |
Cleanup ICEObject protocol/interface
Diffstat (limited to 'objective-c')
-rw-r--r-- | objective-c/include/objc/Ice/Object.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/objective-c/include/objc/Ice/Object.h b/objective-c/include/objc/Ice/Object.h index 8ae9ad8f17f..32fb0e134bd 100644 --- a/objective-c/include/objc/Ice/Object.h +++ b/objective-c/include/objc/Ice/Object.h @@ -37,8 +37,6 @@ ICE_API @protocol ICEObject <NSObject> -(void) ice_ping:(ICECurrent*)current; -(NSString*) ice_id:(ICECurrent*)current; -(NSArray*) ice_ids:(ICECurrent*)current; --(void) ice_preMarshal; --(void) ice_postUnmarshal; -(void) ice_dispatch:(id<ICERequest>)request; @end @@ -47,8 +45,9 @@ ICE_API @interface ICEObject : NSObject<ICEObject, NSCopying> -(void) ice_ping; -(NSString*) ice_id; -(NSArray*) ice_ids; --(void) ice_dispatch:(id<ICERequest>)request; +(NSString*) ice_staticId; +-(void) ice_preMarshal; +-(void) ice_postUnmarshal; +(NSString*const*) iceStaticIds:(int*)count idIndex:(int*)idx; -(void) iceWrite:(id<ICEOutputStream>)os; -(void) iceRead:(id<ICEInputStream>)is; |