diff options
Diffstat (limited to 'SmartDeviceLink/SDLOnCommand.h')
-rw-r--r-- | SmartDeviceLink/SDLOnCommand.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLOnCommand.h b/SmartDeviceLink/SDLOnCommand.h index fe52f29cc..0b685a486 100644 --- a/SmartDeviceLink/SDLOnCommand.h +++ b/SmartDeviceLink/SDLOnCommand.h @@ -14,16 +14,21 @@ * @since SDL 1.0 * @see SDLAddCommand SDLDeleteCommand SDLDeleteSubMenu */ + +NS_ASSUME_NONNULL_BEGIN + @interface SDLOnCommand : SDLRPCNotification /** * @abstract The command ID of the command the user selected. This is the command ID value provided by the application in the <i>SDLAddCommand</i> operation that created the command. */ -@property (strong) NSNumber<SDLInt> *cmdID; +@property (strong, nonatomic) NSNumber<SDLInt> *cmdID; /** * @abstract Indicates whether command was selected via voice or via a menu selection (using the OK button). */ -@property (strong) SDLTriggerSource triggerSource; +@property (strong, nonatomic) SDLTriggerSource triggerSource; @end + +NS_ASSUME_NONNULL_END |