// // 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 #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