summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLTouchEventCapabilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLTouchEventCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLTouchEventCapabilities.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLTouchEventCapabilities.h b/SmartDeviceLink/SDLTouchEventCapabilities.h
new file mode 100644
index 000000000..6d346d874
--- /dev/null
+++ b/SmartDeviceLink/SDLTouchEventCapabilities.h
@@ -0,0 +1,17 @@
+// SDLTouchEventCapabilities.h
+//
+
+
+#import "SDLRPCMessage.h"
+
+@interface SDLTouchEventCapabilities : SDLRPCStruct {
+}
+
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@property (strong) NSNumber *pressAvailable;
+@property (strong) NSNumber *multiTouchAvailable;
+@property (strong) NSNumber *doublePressAvailable;
+
+@end