diff options
Diffstat (limited to 'SmartDeviceLink/SDLSyncMsgVersion.h')
-rw-r--r-- | SmartDeviceLink/SDLSyncMsgVersion.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLSyncMsgVersion.h b/SmartDeviceLink/SDLSyncMsgVersion.h index 873a56f53..7f94afdbf 100644 --- a/SmartDeviceLink/SDLSyncMsgVersion.h +++ b/SmartDeviceLink/SDLSyncMsgVersion.h @@ -9,6 +9,9 @@ * * @since SDL 1.0 */ + +NS_ASSUME_NONNULL_BEGIN + @interface SDLSyncMsgVersion : SDLRPCStruct // TODO: (Alex M.)[2016-12-1] Change from NSInteger to UInt8 @@ -19,12 +22,14 @@ * * Required, Integer, 1 - 10 */ -@property (strong) NSNumber<SDLInt> *majorVersion; +@property (strong, nonatomic) NSNumber<SDLInt> *majorVersion; /** * @abstract The minor version indicates a change to a previous version that should still allow to be run on an older version (with limited functionality) * * Required, Integer, 0 - 1000 */ -@property (strong) NSNumber<SDLInt> *minorVersion; +@property (strong, nonatomic) NSNumber<SDLInt> *minorVersion; @end + +NS_ASSUME_NONNULL_END |