blob: 6f88bb91abeeb74d4568e03cec33cdf82a6e686d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#import <objc/Ice/Initialize.h>
#import <objc/Ice/Connection.h>
#import <objc/Ice/LocalObject.h>
#include <Ice/Dispatcher.h>
@interface ICEDispatcher : NSObject
+(Ice::Dispatcher*)dispatcherWithDispatcher:(void(^)(id<ICEDispatcherCall>, id<ICEConnection>))arg;
@end
@interface ICEDispatcherCall : NSObject<ICEDispatcherCall>
{
Ice::DispatcherCall* cxxCall_;
}
-(id) initWithCall:(Ice::DispatcherCall*)call;
@end
|