blob: 3be831c5889450354c3fa6cdd054c827fd69cae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#import "LocalObject.h"
NS_ASSUME_NONNULL_BEGIN
ICEIMPL_API @interface ICEProcess : ICELocalObject
-(void) shutdown;
-(void) writeMessage:(NSString*)message fd:(int32_t)fd;
@end
#ifdef __cplusplus
@interface ICEProcess()
@property (nonatomic, readonly) std::shared_ptr<Ice::Process> process;
@end
#endif
NS_ASSUME_NONNULL_END
|