summaryrefslogtreecommitdiff
path: root/objective-c/test/Ice/acm/TestI.h
diff options
context:
space:
mode:
Diffstat (limited to 'objective-c/test/Ice/acm/TestI.h')
-rw-r--r--objective-c/test/Ice/acm/TestI.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/objective-c/test/Ice/acm/TestI.h b/objective-c/test/Ice/acm/TestI.h
new file mode 100644
index 00000000000..4f933ed32c5
--- /dev/null
+++ b/objective-c/test/Ice/acm/TestI.h
@@ -0,0 +1,30 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2015 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.h>
+#import <ACMTest.h>
+
+#import <Foundation/Foundation.h>
+
+@interface RemoteCommunicatorI : TestACMRemoteCommunicator<TestACMRemoteCommunicator>
+@end
+
+@interface RemoteObjectAdapterI : TestACMRemoteObjectAdapter<TestACMRemoteObjectAdapter>
+{
+ id<ICEObjectAdapter> _adapter;
+ id<TestACMTestIntfPrx> _testIntf;
+}
+-(id) initWithAdapter:(id<ICEObjectAdapter>)adapter;
+@end
+
+@interface TestACMTestIntfI : TestACMTestIntf<TestACMTestIntf>
+{
+ NSCondition* _cond;
+}
+@end