9 lines
214 B
Objective-C
9 lines
214 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class IMCViewController;
|
|
|
|
@interface IMCMCPServer : NSObject
|
|
- (instancetype)initWithViewController:(IMCViewController *)viewController port:(NSInteger)port;
|
|
- (void)start;
|
|
@end
|