summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPerformAudioPassThruResponse.m
blob: 386b91c50e067335e67982198d29ff74e641dcb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//  SDLPerformAudioPassThruResponse.m
//


#import "SDLPerformAudioPassThruResponse.h"

#import "SDLNames.h"

@implementation SDLPerformAudioPassThruResponse

- (instancetype)init {
    if (self = [super initWithName:SDLNamePerformAudioPassThru]) {
    }
    return self;
}

@end