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