// // SDLCancelInteractionResponse.m // SmartDeviceLink // // Created by Nicole on 7/12/19. // Copyright © 2019 smartdevicelink. All rights reserved. // #import "SDLCancelInteractionResponse.h" #import "SDLRPCFunctionNames.h" NS_ASSUME_NONNULL_BEGIN @implementation SDLCancelInteractionResponse #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wdeprecated-declarations" - (instancetype)init { if (self = [super initWithName:SDLRPCFunctionNameCancelInteraction]) { } return self; } #pragma clang diagnostic pop @end NS_ASSUME_NONNULL_END