1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#import <objc/Ice/Config.h>
#import <objc/Ice/Object.h>
//
// SlicedData holds the slices of unknown types.
//
ICE_API @protocol ICESlicedData<NSObject>
//
// 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<ICESlicedData> slicedData_;
}
@end
|