blob: 5e576445ad24072401ef29ca7fe8cec6b31884a0 (
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
|
// SDLResetGlobalPropertiesResponse.h
//
#import "SDLRPCResponse.h"
/**
* Reset Global Properties Response is sent, when SDLResetGlobalProperties has been called
*
* Since SmartDeviceLink 1.0
*/
@interface SDLResetGlobalPropertiesResponse : SDLRPCResponse {
}
/**
* @abstract Constructs a new SDLResetGlobalPropertiesResponse object
*/
- (instancetype)init;
/**
* @abstract Constructs a new SDLResetGlobalPropertiesResponse object indicated by the NSMutableDictionary
* parameter
* @param dict The dictionary to use
*/
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@end
|