mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-18 14:22:17 -05:00
28 lines
509 B
C++
28 lines
509 B
C++
//
|
|
// DarwinSpeechSynthesizer.h
|
|
// libultraship
|
|
//
|
|
// Created by David Chavez on 22.11.22.
|
|
//
|
|
|
|
#ifndef SOHDarwinSpeechSynthesizer_h
|
|
#define SOHDarwinSpeechSynthesizer_h
|
|
|
|
#include "SpeechSynthesizer.h"
|
|
|
|
class DarwinSpeechSynthesizer : public SpeechSynthesizer {
|
|
public:
|
|
DarwinSpeechSynthesizer();
|
|
|
|
void Speak(const char* text, const char* language);
|
|
|
|
protected:
|
|
bool DoInit(void);
|
|
void DoUninitialize(void);
|
|
|
|
private:
|
|
void* mSynthesizer;
|
|
};
|
|
|
|
#endif /* DarwinSpeechSynthesizer_h */
|