summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLSpeechCapabilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLSpeechCapabilities.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLSpeechCapabilities.h34
1 files changed, 33 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLSpeechCapabilities.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLSpeechCapabilities.h
index 63b038299..57f49945b 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLSpeechCapabilities.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLSpeechCapabilities.h
@@ -1,19 +1,51 @@
// SDLSpeechCapabilities.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLEnum.h"
+/*
+ * Contains information about TTS capabilities on the SDL platform.
+ *
+ * Avaliable since <font color=red><b> SmartDeviceLink 1.0 </b></font>
+ */
@interface SDLSpeechCapabilities : SDLEnum {}
+/*!
+ @abstract get SDLSpeechCapabilities according value string
+ @param value NSString
+ @result SDLSpeechCapabilities object
+ */
+(SDLSpeechCapabilities*) valueOf:(NSString*) value;
+/*!
+ @abstract declare an array to store all possible SDLSpeechCapabilities values
+ @result return the array
+ */
+(NSMutableArray*) values;
+/**
+ * @abstract The SDL platform can speak text phrases.
+ * @result return SDLSpeechCapabilities of value : <font color=gray><i> TEXT </i></font>
+ * @since SmartDeviceLink 1.0
+ */
+(SDLSpeechCapabilities*) TEXT;
+/*!
+ @abstract SAPI_PHONEMES
+ */
+(SDLSpeechCapabilities*) SAPI_PHONEMES;
+/*!
+ @abstract LHPLUS_PHONEMES
+ */
+(SDLSpeechCapabilities*) LHPLUS_PHONEMES;
+/*!
+ @abstract PRE_RECORDED
+ */
+(SDLSpeechCapabilities*) PRE_RECORDED;
+/*!
+ @abstract SILENCE
+ */
+(SDLSpeechCapabilities*) SILENCE;
@end
+