blob: 410af52a99efa3f8c6cab521ee3a6be5af257648 (
plain)
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
29
30
31
32
33
|
// **********************************************************************
//
// Copyright (c) 2003-present 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 <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
|