summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeliveryMode.h
blob: 84575bc2fe403c4b119eb2c8839f0f9d7c8830d3 (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
//  SDLDeliveryMode.h
//

#import "SDLEnum.h"

/**
 *Specifies the mode in which the sendLocation request is sent.
 */
typedef SDLEnum SDLDeliveryMode SDL_SWIFT_ENUM;

/**
 * @abstract User is prompted on HMI
 *
 */
extern SDLDeliveryMode const SDLDeliveryModePrompt;

/**
 * @abstract Set the location as destination without prompting the user
 *
 */
extern SDLDeliveryMode const SDLDeliveryModeDestination;

/**
 * @abstract Adds the current location to navigation queue
 *
 */
extern SDLDeliveryMode const SDLDeliveryModeQueue;