blob: f259e2e3fcdc860a617ef729a504cb51eb40b0b7 (
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
|
// **********************************************************************
//
// 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 <objc/Ice/Stream.h>
#import <objc/Ice/LocalObject.h>
#include <Ice/Stream.h>
@interface ICEInputStream : ICELocalObject<ICEInputStream>
{
Ice::InputStream* is_;
}
+(Ice::Object*)createObjectReader:(ICEObject*)obj;
-(Ice::InputStream*) is;
@end
@interface ICEOutputStream : ICELocalObject<ICEOutputStream>
{
Ice::OutputStream* os_;
std::map<ICEObject*, Ice::ObjectPtr>* objectWriters_;
}
-(Ice::OutputStream*) os;
@end
|