summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAudioType.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/SDLAudioType.h
parentf7540a02262832e34c67b0953dd8a1804a046fea (diff)
downloadsdl_ios-fb8e9903a323acaf5fc78819bb3c203567542ab2.tar.gz
Shift files into root directory
Diffstat (limited to 'SmartDeviceLink/SDLAudioType.h')
-rw-r--r--SmartDeviceLink/SDLAudioType.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLAudioType.h b/SmartDeviceLink/SDLAudioType.h
new file mode 100644
index 000000000..2f1879eea
--- /dev/null
+++ b/SmartDeviceLink/SDLAudioType.h
@@ -0,0 +1,38 @@
+// SDLAudioType.h
+//
+
+
+#import "SDLEnum.h"
+
+/**
+ Describes different audio type options for PerformAudioPassThru
+ */
+@interface SDLAudioType : SDLEnum {
+}
+
+/**
+ * @abstract Convert String to SDLAudioType
+ *
+ * @param value The value of the string to get an object for
+ *
+ * @return SDLAudioType
+ */
++ (SDLAudioType *)valueOf:(NSString *)value;
+
+/**
+ * @abstract Store the enumeration of all possible SDLAudioType
+ *
+ * @return an array that store all possible SDLAudioType
+ */
++ (NSArray *)values;
+
+/**
+ * @abstract PCM raw audio
+ *
+ * @return SDLAudioType with value of *PCM*
+ *
+ * @since SDL 2.0
+ */
++ (SDLAudioType *)PCM;
+
+@end \ No newline at end of file