summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLOnAudioPassThru.m
blob: 0c0867072356d724bcc9cb1f8e0d3ceb8c057003 (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:NAMES_OnAudioPassThru]) {
    }
    return self;
}

@end