blob: 18052a3359bf0a65eab49bceb3bad1f8b66d149c (
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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#import <AMITest.h>
#import <Foundation/Foundation.h>
//
// Servant implementation
//
@interface TestAMITestIntfI : TestAMITestIntf<TestAMITestIntf>
{
int _batchCount;
BOOL _dispatching;
NSCondition* _cond;
}
@end
//
// Servant implementation
//
@interface TestAMITestOuterInnerTestIntfI : TestAMITestOuterInnerTestIntf<TestAMITestOuterInnerTestIntf>
{
}
@end
@interface TestAMITestIntfControllerI : TestAMITestIntfController<TestAMITestIntfController>
{
id<ICEObjectAdapter> _adapter;
}
-(id) initWithAdapter:(id<ICEObjectAdapter>)adapter;
@end
|