summaryrefslogtreecommitdiff
path: root/objective-c/src/Ice/StreamI.h
blob: 2eff566d9886bde331f5c3147bce530f14c12e5c (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-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 <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