LeviLamina
Loading...
Searching...
No Matches
TextToSpeechClient.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // virtual functions
8 // NOLINTBEGIN
9 virtual ~TextToSpeechClient() = default;
10
11 virtual void setTextToSpeechEnabled(bool) = 0;
12
13 virtual bool getTextToSpeechEnabled() const = 0;
14
15 virtual void setVolume(float, float) = 0;
16
17 virtual void speakText(::std::string const&) = 0;
18
19 virtual void stopSpeaking() = 0;
20
21 virtual bool isIdle() const = 0;
22
23 virtual bool supportsLanguage(::std::string const&) const = 0;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29
30 // NOLINTEND
31};
Definition TextToSpeechClient.h:5