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

#import "SDLEnum.h"

/**
 * List possible states of a remote control radio module. Used in RadioControlData.
 */
typedef SDLEnum SDLRadioState SDL_SWIFT_ENUM;

/**
 * Represents Radio state as ACQUIRING
 */
extern SDLRadioState const SDLRadioStateAcquiring;

/**
 * Represents Radio state as ACQUIRED
 */
extern SDLRadioState const SDLRadioStateAcquired;

/**
 * Represents Radio state as MULTICAST
 */
extern SDLRadioState const SDLRadioStateMulticast;

/**
 * Represents Radio state as NOT_FOUND
 */
extern SDLRadioState const SDLRadioStateNotFound;