summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLComponentVolumeStatus.h
blob: 38928deda0fec47ec8c94209bccbca22c239343d (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
//  SDLComponentVolumeStatus.h
//


#import "SDLEnum.h"

/**
 * The volume status of a vehicle component.
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLComponentVolumeStatus NS_EXTENSIBLE_STRING_ENUM;

/**
 * @abstract Unknown SDLComponentVolumeStatus
 */
extern SDLComponentVolumeStatus const SDLComponentVolumeStatusUnknown;

/**
 * @abstract Normal SDLComponentVolumeStatus
 */
extern SDLComponentVolumeStatus const SDLComponentVolumeStatusNormal;

/**
 * @abstract Low SDLComponentVolumeStatus
 */
extern SDLComponentVolumeStatus const SDLComponentVolumeStatusLow;

/**
 * @abstract Fault SDLComponentVolumeStatus
 */
extern SDLComponentVolumeStatus const SDLComponentVolumeStatusFault;

/**
 * @abstract Alert SDLComponentVolumeStatus
 */
extern SDLComponentVolumeStatus const SDLComponentVolumeStatusAlert;

/**
 * @abstract Not supported SDLComponentVolumeStatus
 */
extern SDLComponentVolumeStatus const SDLComponentVolumeStatusNotSupported;