summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPermissionStatus.h
blob: 45b02417d1e7cde1d5c4a1434b68696613e8a461 (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
//  SDLPermissionStatus.h
//


#import "SDLEnum.h"

/**
 * Enumeration that describes possible permission states of a policy table entry. Used in nothing.
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLPermissionStatus SDL_SWIFT_ENUM;

/**
 * permission: allowed
 */
extern SDLPermissionStatus const SDLPermissionStatusAllowed;

/**
 * permission: disallowed
 */
extern SDLPermissionStatus const SDLPermissionStatusDisallowed;

/**
 * permission: user disallowed
 */
extern SDLPermissionStatus const SDLPermissionStatusUserDisallowed;

/**
 * permission: user consent pending
 */
extern SDLPermissionStatus const SDLPermissionStatusUserConsentPending;