// ********************************************************************** // // Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #import #include @interface ICEAsyncResult : NSObject { @private void* asyncResult__; NSString* operation_; id proxy_; } -(ICEAsyncResult*)initWithAsyncResult__:(const Ice::AsyncResultPtr&)arg operation:(NSString*)op proxy:(id)p; -(Ice::AsyncResult*) asyncResult__; +(ICEAsyncResult*)asyncResultWithAsyncResult__:(const Ice::AsyncResultPtr&)arg; +(ICEAsyncResult*)asyncResultWithAsyncResult__:(const Ice::AsyncResultPtr&)arg operation:(NSString*)op proxy:(id)p; -(NSString*)operation; @end @interface ICEObjectPrx () -(ICEObjectPrx*)initWithObjectPrx__:(const Ice::ObjectPrx&)arg; -(IceProxy::Ice::Object*) objectPrx__; +(ICEObjectPrx*)objectPrxWithObjectPrx__:(const Ice::ObjectPrx&)arg; @end