summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnTouchEvent.h
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-10-17 12:53:27 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-10-17 12:53:27 -0700
commit9e2a273e0730526dc195a1a6dd7d5ccfb00ab55a (patch)
tree30a043f3d6e4f62e7ee4b4f741a3c0b34e3d5157 /SmartDeviceLink/SDLOnTouchEvent.h
parentf396ff7f69ef1dc29f6703d174410234ba05857c (diff)
downloadsdl_ios-9e2a273e0730526dc195a1a6dd7d5ccfb00ab55a.tar.gz
Added missing generics
Diffstat (limited to 'SmartDeviceLink/SDLOnTouchEvent.h')
-rw-r--r--SmartDeviceLink/SDLOnTouchEvent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLOnTouchEvent.h b/SmartDeviceLink/SDLOnTouchEvent.h
index 00789cac4..8b437c7b8 100644
--- a/SmartDeviceLink/SDLOnTouchEvent.h
+++ b/SmartDeviceLink/SDLOnTouchEvent.h
@@ -3,12 +3,12 @@
#import "SDLRPCNotification.h"
+@class SDLTouchEvent;
@class SDLTouchType;
-
@interface SDLOnTouchEvent : SDLRPCNotification
@property (strong) SDLTouchType *type;
-@property (strong) NSMutableArray *event;
+@property (strong) NSMutableArray<SDLTouchEvent *> *event;
@end