summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLButtonCapabilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLButtonCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLButtonCapabilities.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLButtonCapabilities.h b/SmartDeviceLink/SDLButtonCapabilities.h
index f73416239..cc24f84fa 100644
--- a/SmartDeviceLink/SDLButtonCapabilities.h
+++ b/SmartDeviceLink/SDLButtonCapabilities.h
@@ -11,32 +11,37 @@
*
* @since SDL 1.0
*/
+
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLButtonCapabilities : SDLRPCStruct
/**
* @abstract The name of the SDL HMI button.
*/
-@property (strong) SDLButtonName name;
+@property (strong, nonatomic) SDLButtonName name;
/**
* @abstract A NSNumber value indicates whether the button supports a SHORT press
*
* Required, Boolean
*/
-@property (strong) NSNumber<SDLBool> *shortPressAvailable;
+@property (strong, nonatomic) NSNumber<SDLBool> *shortPressAvailable;
/**
* @abstract A NSNumber value indicates whether the button supports a LONG press
*
* Required, Boolean
*/
-@property (strong) NSNumber<SDLBool> *longPressAvailable;
+@property (strong, nonatomic) NSNumber<SDLBool> *longPressAvailable;
/**
* @abstract A NSNumber value indicates whether the button supports "button down" and "button up"
*
* Required, Boolean
*/
-@property (strong) NSNumber<SDLBool> *upDownAvailable;
+@property (strong, nonatomic) NSNumber<SDLBool> *upDownAvailable;
@end
+
+NS_ASSUME_NONNULL_END