summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTireStatus.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/SDLTireStatus.h
parent38d57ad153e9ad1d554333ffc2cb3fed9b9e94a5 (diff)
downloadsdl_ios-fa27662309f1e491aa5cc8e32ad9615e49124a06.tar.gz
Added nullability annotation to structs.
Diffstat (limited to 'SmartDeviceLink/SDLTireStatus.h')
-rw-r--r--SmartDeviceLink/SDLTireStatus.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLTireStatus.h b/SmartDeviceLink/SDLTireStatus.h
index c65850303..9912bb364 100644
--- a/SmartDeviceLink/SDLTireStatus.h
+++ b/SmartDeviceLink/SDLTireStatus.h
@@ -3,9 +3,12 @@
#import "SDLRPCMessage.h"
-@class SDLSingleTireStatus;
#import "SDLWarningLightStatus.h"
+@class SDLSingleTireStatus;
+
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLTireStatus : SDLRPCStruct
@property (strong) SDLWarningLightStatus pressureTelltale;
@@ -17,3 +20,5 @@
@property (strong) SDLSingleTireStatus *innerRightRear;
@end
+
+NS_ASSUME_NONNULL_END