diff options
Diffstat (limited to 'objective-c/test/Ice/acm/TestI.h')
-rw-r--r-- | objective-c/test/Ice/acm/TestI.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/objective-c/test/Ice/acm/TestI.h b/objective-c/test/Ice/acm/TestI.h index 56397e9450c..1a8f30e174f 100644 --- a/objective-c/test/Ice/acm/TestI.h +++ b/objective-c/test/Ice/acm/TestI.h @@ -12,10 +12,10 @@ #import <Foundation/Foundation.h> -@interface RemoteCommunicatorI : TestACMRemoteCommunicator<TestACMRemoteCommunicator> +@interface ACMRemoteCommunicatorI : TestACMRemoteCommunicator<TestACMRemoteCommunicator> @end -@interface RemoteObjectAdapterI : TestACMRemoteObjectAdapter<TestACMRemoteObjectAdapter> +@interface ACMRemoteObjectAdapterI : TestACMRemoteObjectAdapter<TestACMRemoteObjectAdapter> { id<ICEObjectAdapter> _adapter; id<TestACMTestIntfPrx> _testIntf; @@ -23,8 +23,17 @@ -(id) initWithAdapter:(id<ICEObjectAdapter>)adapter; @end +@interface ACMConnectionCallbackI : NSObject +{ + NSCondition* _cond; + int _count; +} +-(void) waitForCount:(int)count; +@end + @interface TestACMTestIntfI : TestACMTestIntf<TestACMTestIntf> { NSCondition* _cond; + ACMConnectionCallbackI* _callback; } @end |