// // SDLButtonPressResponse.m // #import "SDLButtonPressResponse.h" #import "SDLRPCParameterNames.h" #import "SDLRPCFunctionNames.h" NS_ASSUME_NONNULL_BEGIN @implementation SDLButtonPressResponse #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations" - (instancetype)init { if (self = [super initWithName:SDLRPCFunctionNameButtonPress]) { } return self; } #pragma clang diagnostic pop @end NS_ASSUME_NONNULL_END