// ********************************************************************** // // Copyright (c) 2003-2017 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 #import #if defined(__clang__) && __has_feature(objc_arc) typedef ICEObject* (^ICEValueFactory)(NSString*) NS_RETURNS_RETAINED; #else typedef ICEObject* (^ICEValueFactory)(NSString*); #endif ICE_API @protocol ICEValueFactoryManager -(void) add:(ICEValueFactory)factory sliceId:(NSString*)id_; -(ICEValueFactory) find:(NSString*)id_; @end