blob: 9013d23c1d0309ecdf83b03b9bca29f0ed7cf34c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// SDLReleaseInteriorVehicleDataModuleResponse.m
// SmartDeviceLink
//
// Created by standa1 on 7/25/19.
// Copyright © 2019 smartdevicelink. All rights reserved.
//
#import "SDLReleaseInteriorVehicleDataModuleResponse.h"
#import "SDLRPCFunctionNames.h"
@implementation SDLReleaseInteriorVehicleDataModuleResponse
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
- (instancetype)init {
if (self = [super initWithName:SDLRPCFunctionNameReleaseInteriorVehicleDataModule]) {
}
return self;
}
#pragma clang diagnostic pop
@end
|