summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeleteCommandResponse.m
blob: 7f97574cb1d75f287aa5f1c9e10ee44d5e8a2edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//  SDLDeleteCommandResponse.m
//


#import "SDLDeleteCommandResponse.h"

#import "SDLNames.h"

@implementation SDLDeleteCommandResponse

- (instancetype)init {
    if (self = [super initWithName:SDLNameDeleteCommand]) {
    }
    return self;
}

@end