summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSpeakResponse.m
blob: 1401ef2765e89a2e687d4aa17f7d05a12adc03be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//  SDLSpeakResponse.m
//


#import "SDLSpeakResponse.h"

#import "SDLNames.h"

@implementation SDLSpeakResponse

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

- (instancetype)initWithDictionary:(NSMutableDictionary<NSString *, id> *)dict {
    if (self = [super initWithDictionary:dict]) {
    }
    return self;
}

@end