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


#import "SDLEndAudioPassThruResponse.h"

#import "SDLNames.h"

@implementation SDLEndAudioPassThruResponse

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

@end