summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSpeechCapabilities.h
blob: 9529e3fef06ccda82c0b9efed4d5ad6c1f4842f9 (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
35
36
37
38
39
40
41
42
43
44
45
46
//  SDLSpeechCapabilities.h
//


#import "SDLEnum.h"

/*
 * Contains information about TTS capabilities on the SDL platform.
 *
 * @since SDL 1.0
 */
@interface SDLSpeechCapabilities : SDLEnum {
}

/**
 * @abstract get SDLSpeechCapabilities according value string
 *
 * @param value The value of the string to get an object for
 *
 * @return SDLSpeechCapabilities object
 */
+ (SDLSpeechCapabilities *)valueOf:(NSString *)value;

/**
 * @abstract declare an array to store all possible SDLSpeechCapabilities values
 *
 * @return the array of all possible values
 */
+ (NSArray *)values;

/**
 * @abstract The SDL platform can speak text phrases.
 *
 * @return SDLSpeechCapabilities of value: *TEXT*
 */
+ (SDLSpeechCapabilities *)TEXT;

+ (SDLSpeechCapabilities *)SAPI_PHONEMES;

+ (SDLSpeechCapabilities *)LHPLUS_PHONEMES;

+ (SDLSpeechCapabilities *)PRE_RECORDED;

+ (SDLSpeechCapabilities *)SILENCE;

@end