// ********************************************************************** // // 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 // // SlicedData holds the slices of unknown types. // ICE_API @protocol ICESlicedData // // Clear the slices to break potential cyclic references. // -(void) clear; @end // // Unknown sliced object holds instance of unknown type. // ICE_API @interface ICEUnknownSlicedValue : ICEObject { @private NSString* unknownTypeId_; id slicedData_; } @end