diff options
Diffstat (limited to 'SmartDeviceLink/SDLV2ProtocolMessage.h')
-rw-r--r-- | SmartDeviceLink/SDLV2ProtocolMessage.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLV2ProtocolMessage.h b/SmartDeviceLink/SDLV2ProtocolMessage.h index 2cb6136ca..0c1cc065a 100644 --- a/SmartDeviceLink/SDLV2ProtocolMessage.h +++ b/SmartDeviceLink/SDLV2ProtocolMessage.h @@ -6,10 +6,13 @@ @class SDLProtocolHeader; +NS_ASSUME_NONNULL_BEGIN @interface SDLV2ProtocolMessage : SDLProtocolMessage -- (instancetype)initWithHeader:(SDLProtocolHeader *)header andPayload:(NSData *)payload; -- (NSDictionary<NSString *, id> *)rpcDictionary; +- (instancetype)initWithHeader:(SDLProtocolHeader *)header andPayload:(nullable NSData *)payload; +- (nullable NSDictionary<NSString *, id> *)rpcDictionary; @end + +NS_ASSUME_NONNULL_END |