summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPerformAudioPassThruResponse.m
blob: a33310be7367cfe6a9940ba9d1dde09c9de66b6a (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
26
//  SDLPerformAudioPassThruResponse.m
//


#import "SDLPerformAudioPassThruResponse.h"

#import "NSMutableDictionary+Store.h"
#import "SDLRPCParameterNames.h"
#import "SDLRPCFunctionNames.h"

NS_ASSUME_NONNULL_BEGIN

@implementation SDLPerformAudioPassThruResponse

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
- (instancetype)init {
    if (self = [super initWithName:SDLRPCFunctionNamePerformAudioPassThru]) {
    }
    return self;
}
#pragma clang diagnostic pop

@end

NS_ASSUME_NONNULL_END