summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLSetGlobalPropertiesResponse.h
blob: 06438af9ea6b4d3efd8452beaba12f9523f89754 (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
 */
-(id) init;
/**
 * @abstract Constructs a new SDLSetGlobalPropertiesResponse object indicated by the NSMutableDictionary
 * parameter
 * @param dict The NSMutableDictionary to use
 */
-(id) initWithDictionary:(NSMutableDictionary*) dict;

@end