co-maps/iphone/Maps/Core/TextToSpeech/MWMTextToSpeech+CPP.h
2025-11-22 13:58:55 +01:00

19 lines
442 B
Objective-C

#import "MWMTextToSpeech.h"
#include <string>
#include <vector>
@interface MWMTextToSpeech (CPP)
// Returns a list of available languages in the following format:
// * name in bcp47;
// * localized name;
- (std::vector<std::pair<std::string, std::string>>)availableLanguages;
- (std::pair<std::string, std::string>)standardLanguage;
@end
namespace tts
{
std::string translateLocale(std::string const & localeString);
} // namespace tts