From fb8e9903a323acaf5fc78819bb3c203567542ab2 Mon Sep 17 00:00:00 2001 From: Joel Fischer Date: Wed, 25 May 2016 08:44:23 -0400 Subject: Shift files into root directory --- SmartDeviceLink/SDLAudioType.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 SmartDeviceLink/SDLAudioType.h (limited to 'SmartDeviceLink/SDLAudioType.h') 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 -- cgit v1.2.1