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