mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
47 lines
No EOL
775 B
C++
47 lines
No EOL
775 B
C++
//
|
|
// SpeechRecognizer.cpp
|
|
// interface/src
|
|
//
|
|
// Created by David Rowe on 10/20/2014.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// 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
|