summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTireStatus.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-18 09:11:44 -0500
commit55850b04dca4b6d11e3a7fcac42d1e1708a36bdf (patch)
treed9f444d1fc9ddd1faf28647ff171202f86df1a32 /SmartDeviceLink/SDLTireStatus.h
parentf44eba087b5f26897a6d126eedc691299f369782 (diff)
downloadsdl_ios-55850b04dca4b6d11e3a7fcac42d1e1708a36bdf.tar.gz
Make properties nonatomic
Diffstat (limited to 'SmartDeviceLink/SDLTireStatus.h')
-rw-r--r--SmartDeviceLink/SDLTireStatus.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/SmartDeviceLink/SDLTireStatus.h b/SmartDeviceLink/SDLTireStatus.h
index c65850303..151066640 100644
--- a/SmartDeviceLink/SDLTireStatus.h
+++ b/SmartDeviceLink/SDLTireStatus.h
@@ -8,12 +8,12 @@
@interface SDLTireStatus : SDLRPCStruct
-@property (strong) SDLWarningLightStatus pressureTelltale;
-@property (strong) SDLSingleTireStatus *leftFront;
-@property (strong) SDLSingleTireStatus *rightFront;
-@property (strong) SDLSingleTireStatus *leftRear;
-@property (strong) SDLSingleTireStatus *rightRear;
-@property (strong) SDLSingleTireStatus *innerLeftRear;
-@property (strong) SDLSingleTireStatus *innerRightRear;
+@property (strong, nonatomic) SDLWarningLightStatus pressureTelltale;
+@property (strong, nonatomic) SDLSingleTireStatus *leftFront;
+@property (strong, nonatomic) SDLSingleTireStatus *rightFront;
+@property (strong, nonatomic) SDLSingleTireStatus *leftRear;
+@property (strong, nonatomic) SDLSingleTireStatus *rightRear;
+@property (strong, nonatomic) SDLSingleTireStatus *innerLeftRear;
+@property (strong, nonatomic) SDLSingleTireStatus *innerRightRear;
@end