summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVehicleDataStatus.h
blob: c0f2ffc55dd51052f68f1e1b4572b17a54894302 (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
//  SDLVehicleDataStatus.h
//


#import "SDLEnum.h"

/**
 * Reflects the status of a binary vehicle data item. Used in MyKey.
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLVehicleDataStatus SDL_SWIFT_ENUM;

/**
 No data avaliable
 */
extern SDLVehicleDataStatus const SDLVehicleDataStatusNoDataExists;

/**
 The status is Off
 */
extern SDLVehicleDataStatus const SDLVehicleDataStatusOff;

/**
 The status is On
 */
extern SDLVehicleDataStatus const SDLVehicleDataStatusOn;