blob: cb31c4dc02cc5d90471f597aa3ac3b3d5125bd77 (
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
@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
|