summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVrCapabilities.h
blob: 0698d272f488c713b6eec8e5dba282487443f79c (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
//  SDLVRCapabilities.h
//


#import "SDLEnum.h"

/**
 * The VR capabilities of the connected SDL platform.
 *
 * @since SDL 1.0
 */
@interface SDLVRCapabilities : SDLEnum {
}

/**
 * Convert String to SDLVRCapabilities
 * @param value The value of the string to get an object for
 * @return SDLVRCapabilities
 */
+ (SDLVRCapabilities *)valueOf:(NSString *)value;

/**
 * @abstract Store the enumeration of all possible SDLVRCapabilities
 * @return an array that store all possible SDLVRCapabilities
 */
+ (NSArray *)values;

/**
 * @abstract The SDL platform is capable of recognizing spoken text in the current language.
 * @return an SDLVRCapabilities instance pointer with value of *TEXT*
 */
+ (SDLVRCapabilities *)TEXT;

@end