diff options
Diffstat (limited to 'SmartDeviceLink/SDLSoftButtonCapabilities.h')
-rw-r--r-- | SmartDeviceLink/SDLSoftButtonCapabilities.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLSoftButtonCapabilities.h b/SmartDeviceLink/SDLSoftButtonCapabilities.h index 0fb85c301..c06cd026f 100644 --- a/SmartDeviceLink/SDLSoftButtonCapabilities.h +++ b/SmartDeviceLink/SDLSoftButtonCapabilities.h @@ -9,6 +9,9 @@ * * @since SDL 2.0 */ + +NS_ASSUME_NONNULL_BEGIN + @interface SDLSoftButtonCapabilities : SDLRPCStruct /** @@ -18,7 +21,7 @@ * * Required, Boolean */ -@property (strong) NSNumber<SDLBool> *shortPressAvailable; +@property (strong, nonatomic) NSNumber<SDLBool> *shortPressAvailable; /** * @abstract The button supports a LONG press. @@ -27,7 +30,7 @@ * * Required, Boolean */ -@property (strong) NSNumber<SDLBool> *longPressAvailable; +@property (strong, nonatomic) NSNumber<SDLBool> *longPressAvailable; /** * @abstract The button supports "button down" and "button up". @@ -36,13 +39,15 @@ * * Required, Boolean */ -@property (strong) NSNumber<SDLBool> *upDownAvailable; +@property (strong, nonatomic) NSNumber<SDLBool> *upDownAvailable; /** * @abstract The button supports referencing a static or dynamic image. * * Required, Boolean */ -@property (strong) NSNumber<SDLBool> *imageSupported; +@property (strong, nonatomic) NSNumber<SDLBool> *imageSupported; @end + +NS_ASSUME_NONNULL_END |