summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLComponentVolumeStatus.h
blob: dc710a5732b1b93f954facfb5a3bcc6cb4dffa48 (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. Used in SingleTireStatus and VehicleData Fuel Level
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLComponentVolumeStatus SDL_SWIFT_ENUM;

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

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

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

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

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

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