blob: 360b8ffda23666eaaa7ea9ef43183ee763115c49 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// **********************************************************************
//
// 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/Endpoint.h>
#import <objc/Ice/LocalObject.h>
#include <Ice/Endpoint.h>
namespace IceObjC
{
ICE_API void registerEndpointInfoClass(Class cl);
}
@interface ICEEndpoint : ICELocalObject<ICEEndpoint>
-(Ice::Endpoint*) endpoint;
@end
@interface ICEEndpointInfo (ICEInternal)
-(id) initWithEndpointInfo:(Ice::EndpointInfo*)endpointInfo;
@end
@interface ICEIPEndpointInfo (ICEInternal)
-(id) initWithIPEndpointInfo:(Ice::IPEndpointInfo*)ipEndpointInfo;
@end
@interface ICETCPEndpointInfo (ICEInternal)
-(id) initWithTCPEndpointInfo:(Ice::TCPEndpointInfo*)tcpEndpointInfo;
@end
@interface ICEUDPEndpointInfo (ICEInternal)
-(id) initWithUDPEndpointInfo:(Ice::UDPEndpointInfo*)udpEndpointInfo;
@end
@interface ICEWSEndpointInfo (ICEInternal)
-(id) initWithWSEndpointInfo:(Ice::WSEndpointInfo*)wsEndpointInfo;
@end
@interface ICEOpaqueEndpointInfo (ICEInternal)
-(id) initWithOpaqueEndpointInfo:(Ice::OpaqueEndpointInfo*)opaqueEndpointInfo;
@end
|