summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLBodyInformation.h
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-12-22 13:35:53 -0500
committerMuller, Alexander (A.) <amulle19@ford.com>2016-12-22 13:35:53 -0500
commitfa27662309f1e491aa5cc8e32ad9615e49124a06 (patch)
tree1d7ea40da2707e05d07d6f5a3656a7ecd4eb3bbe /SmartDeviceLink/SDLBodyInformation.h
parent38d57ad153e9ad1d554333ffc2cb3fed9b9e94a5 (diff)
downloadsdl_ios-fa27662309f1e491aa5cc8e32ad9615e49124a06.tar.gz
Added nullability annotation to structs.
Diffstat (limited to 'SmartDeviceLink/SDLBodyInformation.h')
-rw-r--r--SmartDeviceLink/SDLBodyInformation.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLBodyInformation.h b/SmartDeviceLink/SDLBodyInformation.h
index 4729ffc6c..03417b6ad 100644
--- a/SmartDeviceLink/SDLBodyInformation.h
+++ b/SmartDeviceLink/SDLBodyInformation.h
@@ -10,6 +10,9 @@
/**
* The body information including power modes.
*/
+
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLBodyInformation : SDLRPCStruct
/**
@@ -30,21 +33,23 @@
/**
* @abstract References signal "DrStatDrv_B_Actl".
*/
-@property (strong) NSNumber<SDLBool> *driverDoorAjar;
+@property (nullable, strong) NSNumber<SDLBool> *driverDoorAjar;
/**
* @abstract References signal "DrStatPsngr_B_Actl".
*/
-@property (strong) NSNumber<SDLBool> *passengerDoorAjar;
+@property (nullable, strong) NSNumber<SDLBool> *passengerDoorAjar;
/**
* @abstract References signal "DrStatRl_B_Actl".
*/
-@property (strong) NSNumber<SDLBool> *rearLeftDoorAjar;
+@property (nullable, strong) NSNumber<SDLBool> *rearLeftDoorAjar;
/**
* @abstract References signal "DrStatRr_B_Actl".
*/
-@property (strong) NSNumber<SDLBool> *rearRightDoorAjar;
+@property (nullable, strong) NSNumber<SDLBool> *rearRightDoorAjar;
@end
+
+NS_ASSUME_NONNULL_END