summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.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/SDLUnsubscribeVehicleDataResponse.h
parentf44eba087b5f26897a6d126eedc691299f369782 (diff)
downloadsdl_ios-55850b04dca4b6d11e3a7fcac42d1e1708a36bdf.tar.gz
Make properties nonatomic
Diffstat (limited to 'SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h')
-rw-r--r--SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h b/SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h
index eecce7b75..9a6c3f4a0 100644
--- a/SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h
+++ b/SmartDeviceLink/SDLUnsubscribeVehicleDataResponse.h
@@ -16,101 +16,101 @@
/**
* @abstract A SDLVehicleDataResult* value. See GPSData.
*/
-@property (strong) SDLVehicleDataResult *gps;
+@property (strong, nonatomic) SDLVehicleDataResult *gps;
/**
* @abstract A SDLVehicleDataResult* value. The vehicle speed in kilometers per hour.
*/
-@property (strong) SDLVehicleDataResult *speed;
+@property (strong, nonatomic) SDLVehicleDataResult *speed;
/**
* @abstract A SDLVehicleDataResult* value. The number of revolutions per minute of the engine.
*/
-@property (strong) SDLVehicleDataResult *rpm;
+@property (strong, nonatomic) SDLVehicleDataResult *rpm;
/**
* @abstract A SDLVehicleDataResult* value. The fuel level in the tank (percentage)
*/
-@property (strong) SDLVehicleDataResult *fuelLevel;
+@property (strong, nonatomic) SDLVehicleDataResult *fuelLevel;
/**
* @abstract A SDLVehicleDataResult* value. The fuel level state.
*/
-@property (strong) SDLVehicleDataResult *fuelLevel_State;
+@property (strong, nonatomic) SDLVehicleDataResult *fuelLevel_State;
/**
* @abstract A SDLVehicleDataResult* value. The instantaneous fuel consumption in microlitres.
*/
-@property (strong) SDLVehicleDataResult *instantFuelConsumption;
+@property (strong, nonatomic) SDLVehicleDataResult *instantFuelConsumption;
/**
* @abstract A SDLVehicleDataResult* value. The external temperature in degrees celsius.
*/
-@property (strong) SDLVehicleDataResult *externalTemperature;
+@property (strong, nonatomic) SDLVehicleDataResult *externalTemperature;
/**
* @abstract A SDLVehicleDataResult* value. See PRNDL.
*/
-@property (strong) SDLVehicleDataResult *prndl;
+@property (strong, nonatomic) SDLVehicleDataResult *prndl;
/**
* @abstract A SDLVehicleDataResult* value. See TireStatus.
*/
-@property (strong) SDLVehicleDataResult *tirePressure;
+@property (strong, nonatomic) SDLVehicleDataResult *tirePressure;
/**
* @abstract A SDLVehicleDataResult* value. Odometer in km.
*/
-@property (strong) SDLVehicleDataResult *odometer;
+@property (strong, nonatomic) SDLVehicleDataResult *odometer;
/**
* @abstract A SDLVehicleDataResult* value. The status of the seat belts.
*/
-@property (strong) SDLVehicleDataResult *beltStatus;
+@property (strong, nonatomic) SDLVehicleDataResult *beltStatus;
/**
* @abstract A SDLVehicleDataResult* value. The body information including power modes.
*/
-@property (strong) SDLVehicleDataResult *bodyInformation;
+@property (strong, nonatomic) SDLVehicleDataResult *bodyInformation;
/**
* @abstract A SDLVehicleDataResult* value. The device status including signal and battery strength.
*/
-@property (strong) SDLVehicleDataResult *deviceStatus;
+@property (strong, nonatomic) SDLVehicleDataResult *deviceStatus;
/**
* @abstract A SDLVehicleDataResult* value. The status of the brake pedal.
*/
-@property (strong) SDLVehicleDataResult *driverBraking;
+@property (strong, nonatomic) SDLVehicleDataResult *driverBraking;
/**
* @abstract A SDLVehicleDataResult* value. The status of the wipers.
*/
-@property (strong) SDLVehicleDataResult *wiperStatus;
+@property (strong, nonatomic) SDLVehicleDataResult *wiperStatus;
/**
* @abstract A SDLVehicleDataResult* value. Status of the head lamps.
*/
-@property (strong) SDLVehicleDataResult *headLampStatus;
+@property (strong, nonatomic) SDLVehicleDataResult *headLampStatus;
/**
* @abstract A SDLVehicleDataResult* value. Torque value for engine (in Nm) on non-diesel variants.
*/
-@property (strong) SDLVehicleDataResult *engineTorque;
+@property (strong, nonatomic) SDLVehicleDataResult *engineTorque;
/**
* @abstract A SDLVehicleDataResult* value. Accelerator pedal position (percentage depressed)
*/
-@property (strong) SDLVehicleDataResult *accPedalPosition;
+@property (strong, nonatomic) SDLVehicleDataResult *accPedalPosition;
/**
* @abstract A SDLVehicleDataResult* value. Current angle of the steering wheel (in deg)
*/
-@property (strong) SDLVehicleDataResult *steeringWheelAngle;
-@property (strong) SDLVehicleDataResult *eCallInfo;
-@property (strong) SDLVehicleDataResult *airbagStatus;
-@property (strong) SDLVehicleDataResult *emergencyEvent;
-@property (strong) SDLVehicleDataResult *clusterModes;
-@property (strong) SDLVehicleDataResult *myKey;
+@property (strong, nonatomic) SDLVehicleDataResult *steeringWheelAngle;
+@property (strong, nonatomic) SDLVehicleDataResult *eCallInfo;
+@property (strong, nonatomic) SDLVehicleDataResult *airbagStatus;
+@property (strong, nonatomic) SDLVehicleDataResult *emergencyEvent;
+@property (strong, nonatomic) SDLVehicleDataResult *clusterModes;
+@property (strong, nonatomic) SDLVehicleDataResult *myKey;
@end