summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLSpeakResponse.h
blob: 2a7eef046bd7d0ff086af69bd3932d64064e8dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//  SDLSpeakResponse.h
//


#import "SDLRPCResponse.h"

/**
 * Speak Response is sent, when Speak has been called
 *
 * Since SmartDeviceLink 1.0
 */
@interface SDLSpeakResponse : SDLRPCResponse {
}

/**
 * @abstract Constructs a new SDLSpeakResponse object
 */
- (instancetype)init;
/**
 * @abstract Constructs a new SDLSpeakResponse object indicated by the NSMutableDictionary
 * parameter
 * @param dict The dictionary to use
 */
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

@end