Private
Public Access
1
0

Project cleanup around new submodule

This commit is contained in:
2018-11-16 01:40:02 -08:00
parent 182e240291
commit 1b12faddf8
6 changed files with 7 additions and 17 deletions

View File

@@ -11,7 +11,7 @@
#import "MBIMHTTPConnection.h"
#import "hooking.h"
#import <CocoaHTTPServer/CocoaHTTPServer.h>
#import <CocoaHTTPServer/HTTPServer.h>
#import <IMCore/IMCore.h>
#import <IMCore/IMCore_Private.h>

View File

@@ -6,7 +6,7 @@
// Copyright © 2018 James Magahern. All rights reserved.
//
#import <CocoaHTTPServer/CocoaHTTPServer.h>
#import <CocoaHTTPServer/HTTPConnection.h>
@interface MBIMHTTPConnection : HTTPConnection

View File

@@ -7,6 +7,7 @@
//
#import "MBIMHTTPConnection.h"
#import "MBIMBridge.h"
#import "MBIMBridgeOperation.h"

View File

@@ -7,13 +7,14 @@
//
#import <Foundation/Foundation.h>
#import <CocoaHTTPServer/CocoaHTTPServer.h>
#import <CocoaHTTPServer/HTTPResponse.h>
#import <CocoaHTTPServer/HTTPErrorResponse.h>
#import "MBIMJSONDataResponse.h"
NS_ASSUME_NONNULL_BEGIN
typedef void (^MBIMBridgeOperationCompletionBlock)(NSObject * _Nullable response);
typedef void (^MBIMBridgeOperationCompletionBlock)(NSObject<HTTPResponse> * _Nullable response);
@interface MBIMBridgeOperation : NSOperation
@property (class, nonatomic, readonly) NSString *endpointName;

View File

@@ -7,7 +7,7 @@
//
#import <Foundation/Foundation.h>
#import <CocoaHTTPServer/CocoaHTTPServer.h>
#import <CocoaHTTPServer/HTTPDataResponse.h>
@interface MBIMJSONDataResponse : HTTPDataResponse