summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLTTSChunkFactory.h
blob: 466ae2baeb707ad9300c5b51113741c1b2fd7ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//  SDLTTSChunkFactory.h
//

#import <Foundation/Foundation.h>

@class SDLTTSChunk;
@class SDLSpeechCapabilities;


@interface SDLTTSChunkFactory : NSObject {
}

+ (SDLTTSChunk *)buildTTSChunkForString:(NSString *)text type:(SDLSpeechCapabilities *)type;
+ (NSMutableArray *)buildTTSChunksFromSimple:(NSString *)simple;

@end