summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAddCommandResponse.m
blob: 877b189ec3675d715bd9ba4430a7f406282e8442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//  SDLAddCommandResponse.m

#import "SDLAddCommandResponse.h"

#import "NSMutableDictionary+Store.h"
#import "SDLNames.h"

NS_ASSUME_NONNULL_BEGIN

@implementation SDLAddCommandResponse

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

@end

NS_ASSUME_NONNULL_END