diff options
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLProtocolMessageAssembler.h')
-rw-r--r-- | SmartDeviceLink-iOS/SmartDeviceLink/SDLProtocolMessageAssembler.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLProtocolMessageAssembler.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLProtocolMessageAssembler.h index 1a19c1088..427d18b5f 100644 --- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLProtocolMessageAssembler.h +++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLProtocolMessageAssembler.h @@ -1,9 +1,10 @@ // SDLSmartDeviceLinkProtocolMessageAssembler.h // +@import Foundation; +@class SDLProtocolMessage; -#import "SDLProtocolMessage.h" typedef void(^SDLMessageAssemblyCompletionHandler)(BOOL done, SDLProtocolMessage *assembledMessage); @@ -15,7 +16,7 @@ typedef void(^SDLMessageAssemblyCompletionHandler)(BOOL done, SDLProtocolMessage @property (assign) UInt32 expectedBytes; @property (strong) NSMutableDictionary *parts; -- (id)initWithSessionID:(UInt8)sessionID; +- (instancetype)initWithSessionID:(UInt8)sessionID; - (void)handleMessage:(SDLProtocolMessage *)message withCompletionHandler:(SDLMessageAssemblyCompletionHandler)completionHandler; @end |