// SDLEndAudioPassThruResponse.m // #import "SDLEndAudioPassThruResponse.h" #import "SDLNames.h" @implementation SDLEndAudioPassThruResponse - (instancetype)init { if (self = [super initWithName:NAMES_EndAudioPassThru]) { } return self; } - (instancetype)initWithDictionary:(NSMutableDictionary *)dict { if (self = [super initWithDictionary:dict]) { } return self; } @end