summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLHMIZoneCapabilities.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-05-25 08:44:23 -0400
commitfb8e9903a323acaf5fc78819bb3c203567542ab2 (patch)
treee40665103ac7db492e0a40e34cd92f3390defa55 /SmartDeviceLink/SDLHMIZoneCapabilities.h
parentf7540a02262832e34c67b0953dd8a1804a046fea (diff)
downloadsdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz
Shift files into root directory
Diffstat (limited to 'SmartDeviceLink/SDLHMIZoneCapabilities.h')
-rw-r--r--SmartDeviceLink/SDLHMIZoneCapabilities.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLHMIZoneCapabilities.h b/SmartDeviceLink/SDLHMIZoneCapabilities.h
new file mode 100644
index 000000000..d63655bd8
--- /dev/null
+++ b/SmartDeviceLink/SDLHMIZoneCapabilities.h
@@ -0,0 +1,39 @@
+// SDLHmiZoneCapabilities.h
+//
+
+
+#import "SDLEnum.h"
+
+/**
+ * Specifies HMI Zones in the vehicle.
+ *
+ * @since SDL 1.0
+ */
+@interface SDLHMIZoneCapabilities : SDLEnum {
+}
+
+/**
+ * @abstract SDLHMIZoneCapabilities
+ * @param value The value of the string to get an object for
+ * @return SDLHMIZoneCapabilities
+ */
++ (SDLHMIZoneCapabilities *)valueOf:(NSString *)value;
+
+/**
+ * @abstract store all possible SDLHMIZoneCapabilities values
+ * @return an array with all possible SDLHMIZoneCapabilities values inside
+ */
++ (NSArray *)values;
+
+/**
+ * @abstract Indicates HMI available for front seat passengers.
+ * @return a SDLHMIZoneCapabilities with value of *FRONT*
+ */
++ (SDLHMIZoneCapabilities *)FRONT;
+/**
+ * @abstract Indicates HMI available for rear seat passengers.
+ * @return a SDLHMIZoneCapabilities with value of *BACK*
+ */
++ (SDLHMIZoneCapabilities *)BACK;
+
+@end