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


#import "SDLOnAudioPassThru.h"

#import "SDLNames.h"

@implementation SDLOnAudioPassThru

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

@end