summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLPerformAudioPassThruResponse.h
blob: 3d2835114ceba0cf24e1a49ea2a2d0d70412102e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//  SDLPerformAudioPassThruResponse.h
//


#import "SDLRPCResponse.h"

/**
 * Perform Audio Pass Thru Response is sent, when PerformAudioPassThru has been called
 *
 * Since SmartDeviceLink 2.0
 */
@interface SDLPerformAudioPassThruResponse : SDLRPCResponse {
}

/**
 * @abstract Constructs a new SDLPerformAudioPassThruResponse object
 */
- (instancetype)init;
/**
 * @abstract Constructs a new SDLPerformAudioPassThruResponse object indicated by the dictionary parameter
 * @param dict The dictionary to use
 */
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

@end