summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLUnregisterAppInterfaceResponse.h
blob: 8ebbb46af48323965265b7fc3a2c7af28ffb02e5 (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
//  SDLUnregisterAppInterfaceResponse.h
//


#import "SDLRPCResponse.h"

/**
 * Unregister AppInterface Response is sent, when SDLUnregisterAppInterface has been called
 *
 * @since SmartDeviceLink 1.0
 */
@interface SDLUnregisterAppInterfaceResponse : SDLRPCResponse {
}

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

@end