1 //
2 // Copyright (c) ZeroC, Inc. All rights reserved.
3 //
4 
5 #import <objc/Ice.h>
6 
7 #import <Foundation/Foundation.h>
8 
9 @interface TestServantLocatorI : NSObject<ICEServantLocator>
10 {
11     NSString* _category;
12     BOOL _deactivated;
13     int _requestId;
14 }
15 -(id) init:(NSString*)category;
16 -(ICEObject*) newServantAndCookie:(id*)cookie;
17 -(void) checkCookie:(id)cookie;
18 -(void) throwTestIntfUserException;
19 -(void) exception:(ICECurrent*)current;
20 @end
21