summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTouchEvent.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLTouchEvent.h')
-rw-r--r--SmartDeviceLink/SDLTouchEvent.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLTouchEvent.h b/SmartDeviceLink/SDLTouchEvent.h
index 83a090b50..353b0a625 100644
--- a/SmartDeviceLink/SDLTouchEvent.h
+++ b/SmartDeviceLink/SDLTouchEvent.h
@@ -6,6 +6,8 @@
@class SDLTouchCoord;
+NS_ASSUME_NONNULL_BEGIN
+
@interface SDLTouchEvent : SDLRPCStruct
/**
@@ -15,7 +17,7 @@
Mandatory, 0-9
*/
-@property (strong) NSNumber<SDLInt> *touchEventId;
+@property (strong, nonatomic) NSNumber<SDLInt> *touchEventId;
/**
The time that the touch was recorded. This number can the time since the beginning of the session or something else as long as the units are in milliseconds.
@@ -28,11 +30,13 @@
Mandatory, array size 1-1000, contains <NSNumber> size 0-5000000000
*/
-@property (strong) NSMutableArray<NSNumber<SDLInt> *> *timeStamp;
+@property (strong, nonatomic) NSMutableArray<NSNumber<SDLInt> *> *timeStamp;
/**
* Mandatory, array size 1-1000, contains SDLTouchCoord
*/
-@property (strong) NSMutableArray<SDLTouchCoord *> *coord;
+@property (strong, nonatomic) NSMutableArray<SDLTouchCoord *> *coord;
@end
+
+NS_ASSUME_NONNULL_END