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


#import "SDLEnum.h"

/**
 * The supported dimensions of the GPS. Used in GPSData
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLDimension SDL_SWIFT_ENUM;

/**
 * No GPS at all
 */
extern SDLDimension const SDLDimensionNoFix;

/**
 * Longitude and latitude of the GPS
 */
extern SDLDimension const SDLDimension2D;

/**
 * Longitude and latitude and altitude of the GPS
 */
extern SDLDimension const SDLDimension3D;