diff options
Diffstat (limited to 'SmartDeviceLink/SDLGetWaypoints.h')
-rw-r--r-- | SmartDeviceLink/SDLGetWaypoints.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLGetWaypoints.h b/SmartDeviceLink/SDLGetWaypoints.h index 91f95ab9f..b0aaf96c5 100644 --- a/SmartDeviceLink/SDLGetWaypoints.h +++ b/SmartDeviceLink/SDLGetWaypoints.h @@ -5,6 +5,7 @@ #import "SDLWaypointType.h" +NS_ASSUME_NONNULL_BEGIN @interface SDLGetWayPoints : SDLRPCRequest @@ -16,10 +17,16 @@ * * Required */ -@property (strong, nonatomic) SDLWaypointType waypointType; +@property (nullable, strong, nonatomic) SDLWaypointType waypointType; @end +NS_ASSUME_NONNULL_END + +NS_ASSUME_NONNULL_BEGIN + __deprecated_msg("Use SDLGetWayPoints instead") @interface SDLGetWaypoints : SDLGetWayPoints - @end +@end + +NS_ASSUME_NONNULL_END |