summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSetMediaClockTimerResponse.h
blob: ffa6a77aeba19df0eefc630ea5c1c48d11541263 (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
27
28
//  SDLSetMediaClockTimerResponse.h
//


#import "SDLRPCResponse.h"

/**
 * Set Media Clock Timer Response is sent, when SDLSetMediaClockTimer has been called
 *
 * Since SmartDeviceLink 1.0
 */
@interface SDLSetMediaClockTimerResponse : SDLRPCResponse {
}

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

@end