diff options
Diffstat (limited to 'objective-c/include/objc/Ice/Proxy.h')
-rw-r--r-- | objective-c/include/objc/Ice/Proxy.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/objective-c/include/objc/Ice/Proxy.h b/objective-c/include/objc/Ice/Proxy.h index 83fa6e93e10..79dbf98eecb 100644 --- a/objective-c/include/objc/Ice/Proxy.h +++ b/objective-c/include/objc/Ice/Proxy.h @@ -162,8 +162,8 @@ ICE_API @protocol ICEObjectPrx <NSObject, NSCopying> ICE_API @interface ICEObjectPrx : NSObject<ICEObjectPrx> { - void* objectPrx__; - id<ICECommunicator> communicator__; + void* objectPrx_; + id<ICECommunicator> communicator_; } +(id) uncheckedCast:(id<ICEObjectPrx>)proxy; +(id) uncheckedCast:(id<ICEObjectPrx>)proxy facet:(NSString*)facet; @@ -173,19 +173,19 @@ ICE_API @interface ICEObjectPrx : NSObject<ICEObjectPrx> +(id) checkedCast:(id<ICEObjectPrx>)proxy facet:(NSString*)facet context:(ICEContext*)context; +(NSString*) ice_staticId; -+(Protocol*) protocol__; --(id<ICEOutputStream>) createOutputStream__; --(void) invoke__:(NSString*)operation mode:(ICEOperationMode)mode format:(ICEFormatType)format marshal:(ICEMarshalCB)marshal - unmarshal:(ICEUnmarshalCB)unmarshal context:(ICEContext*)context; --(id<ICEAsyncResult>) begin_invoke__:(NSString*)operation mode:(ICEOperationMode)mode format:(ICEFormatType)format marshal:(ICEMarshalCB)marshal - returnsData:(BOOL)returnsData context:(ICEContext*)context; --(id<ICEAsyncResult>) begin_invoke__:(NSString*)operation mode:(ICEOperationMode)mode format:(ICEFormatType)format marshal:(ICEMarshalCB)marshal - response:(void(^)())response - exception:(void(^)(ICEException*))exception sent:(void(^)(BOOL))sent ++(Protocol*) iceProtocol; +-(id<ICEOutputStream>) iceCreateOutputStream; +-(void) iceInvoke:(NSString*)operation mode:(ICEOperationMode)mode format:(ICEFormatType)format marshal:(ICEMarshalCB)marshal + unmarshal:(ICEUnmarshalCB)unmarshal context:(ICEContext*)context; +-(id<ICEAsyncResult>) iceI_begin_invoke:(NSString*)operation mode:(ICEOperationMode)mode format:(ICEFormatType)format marshal:(ICEMarshalCB)marshal + returnsData:(BOOL)returnsData context:(ICEContext*)context; +-(id<ICEAsyncResult>) iceI_begin_invoke:(NSString*)operation mode:(ICEOperationMode)mode format:(ICEFormatType)format marshal:(ICEMarshalCB)marshal + response:(void(^)())response + exception:(void(^)(ICEException*))exception sent:(void(^)(BOOL))sent context:(ICEContext*)context; --(id<ICEAsyncResult>) begin_invoke__:(NSString*)operation mode:(ICEOperationMode)mode format:(ICEFormatType)format marshal:(ICEMarshalCB)marshal - completed:(void(^)(id<ICEInputStream>, BOOL))completed - response:(BOOL)response exception:(void(^)(ICEException*))exception sent:(void(^)(BOOL))sent - context:(ICEContext*)context; --(void)end_invoke__:(NSString*)operation unmarshal:(ICEUnmarshalCB)unmarshal result:(id<ICEAsyncResult>)result; +-(id<ICEAsyncResult>) iceI_begin_invoke:(NSString*)operation mode:(ICEOperationMode)mode format:(ICEFormatType)format marshal:(ICEMarshalCB)marshal + completed:(void(^)(id<ICEInputStream>, BOOL))completed + response:(BOOL)response exception:(void(^)(ICEException*))exception sent:(void(^)(BOOL))sent + context:(ICEContext*)context; +-(void)iceI_end_invoke:(NSString*)operation unmarshal:(ICEUnmarshalCB)unmarshal result:(id<ICEAsyncResult>)result; @end |