mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 19:38:22 +02:00
Add stubs for Windows SpeechRecognizer interface
This commit is contained in:
parent
7566b7e546
commit
f872902ab9
1 changed files with 36 additions and 0 deletions
|
@ -9,3 +9,39 @@
|
|||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
|
||||
#include "SpeechRecognizer.h"
|
||||
|
||||
SpeechRecognizer::SpeechRecognizer() :
|
||||
QObject() {
|
||||
|
||||
}
|
||||
|
||||
SpeechRecognizer::~SpeechRecognizer() {
|
||||
|
||||
}
|
||||
|
||||
void SpeechRecognizer::handleCommandRecognized(const char* command) {
|
||||
|
||||
}
|
||||
|
||||
void SpeechRecognizer::setEnabled(bool enabled) {
|
||||
|
||||
}
|
||||
|
||||
void SpeechRecognizer::addCommand(const QString& command) {
|
||||
|
||||
}
|
||||
|
||||
void SpeechRecognizer::removeCommand(const QString& command) {
|
||||
|
||||
}
|
||||
|
||||
void SpeechRecognizer::reloadCommands() {
|
||||
|
||||
}
|
||||
|
||||
#endif // Q_OS_WIN
|
Loading…
Reference in a new issue