summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLAppHMIType.h
blob: 2c02fe498c924f0311421af60c0c8210b1cb0cbc (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//  SDLAppHMIType.h
//


#import "SDLEnum.h"

/**
 * Enumeration listing possible app hmi types.
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLAppHMIType SDL_SWIFT_ENUM;

/**
 * @abstract The App will have default rights.
 */
extern SDLAppHMIType const SDLAppHMITypeDefault;

/**
 * @abstract Communication type of App
 */
extern SDLAppHMIType const SDLAppHMITypeCommunication;

/**
 * @abstract App dealing with Media
 */
extern SDLAppHMIType const SDLAppHMITypeMedia;

/**
 * @abstract Messaging App
 */
extern SDLAppHMIType const SDLAppHMITypeMessaging;

/**
 * @abstract Navigation App
 */
extern SDLAppHMIType const SDLAppHMITypeNavigation;

/**
 * @abstract Information App
 */
extern SDLAppHMIType const SDLAppHMITypeInformation;

/**
 * @abstract App dealing with social media
 */
extern SDLAppHMIType const SDLAppHMITypeSocial;

/**
 * @abstract App dealing with Mobile Projection applications
 */
extern SDLAppHMIType const SDLAppHMITypeProjection;

extern SDLAppHMIType const SDLAppHMITypeBackgroundProcess;

/**
 * @abstract App only for Testing purposes
 */
extern SDLAppHMIType const SDLAppHMITypeTesting;

/**
 * @abstract System App
 */
extern SDLAppHMIType const SDLAppHMITypeSystem;