summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLUnregisterAppInterface.h
blob: d35d40193ade3d1d152e475a924bcfb4d529c487 (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
29
30
31
32
33
34
35
36
//  SDLUnregisterAppInterface.h
//


#import "SDLRPCRequest.h"

/**
 * Terminates an application's interface registration. This causes SDL® to
 * dispose of all resources associated with the application's interface
 * registration (e.g. Command Menu items, Choice Sets, button subscriptions,
 * etc.)
 * <p>
 * After the UnregisterAppInterface operation is performed, no other operations
 * can be performed until a new app interface registration is established by
 * calling <i>{@linkplain RegisterAppInterface}</i>
 * <p>
 * <b>HMILevel can be FULL, LIMITED, BACKGROUND or NONE</b>
 * </p>
 *
 * See SDLRegisterAppInterface SDLOnAppInterfaceUnregistered
 */
@interface SDLUnregisterAppInterface : SDLRPCRequest {
}

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

@end