summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h
diff options
context:
space:
mode:
authorJoel Fischer <joel@livioradio.com>2015-03-09 10:41:15 -0400
committerJoel Fischer <joel@livioradio.com>2015-03-09 10:50:44 -0400
commit25b881cf646de400b1a1b749dc0175a8d073e330 (patch)
treecfed62075bf052ad8c713fb1f8fd199f0b6f5901 /SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h
parentaea65586bb1817cfc9c6b47af273ac6498a27df6 (diff)
downloadsdl_ios-25b881cf646de400b1a1b749dc0175a8d073e330.tar.gz
Documentation of enums, rpcs, and more
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h
index de0f23268..aba124a7e 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLEndAudioPassThru.h
@@ -1,13 +1,33 @@
// SDLEndAudioPassThru.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLRPCRequest.h"
+/**
+ * When this request is invoked, the audio capture stops
+ * <p>
+ * Function Group: AudioPassThru
+ * <p>
+ * <b>HMILevel needs to be FULL, LIMITED or BACKGROUND</b>
+ * </p>
+ * Since <b>SmartDeviceLink 2.0</b><br>
+ * see SDLPerformAudioPassThru
+ */
@interface SDLEndAudioPassThru : SDLRPCRequest {}
+/**
+ * Constructs a new SDLEndAudioPassThru object
+ */
-(id) init;
+/**
+ * Constructs a new SDLEndAudioPassThru object indicated by the NSMutableDictionary
+ * parameter
+ * <p>
+ *
+ * @param dict The NSMutableDictionary to use
+ */
-(id) initWithDictionary:(NSMutableDictionary*) dict;
@end