summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h
blob: 1317001377b8edf1389b91409463cc3b1734d99a (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
//  SDLSetGlobalPropertiesResponse.h
//


#import "SDLRPCResponse.h"

/**
 * Set Global Properties Response is sent, when SDLSetGlobalProperties has been called
 *
 * Since SmartDeviceLink 1.0
 */
@interface SDLSetGlobalPropertiesResponse : SDLRPCResponse {
}

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

@end