| 1 | // Copyright (C) 2022 The Qt Company Ltd. |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | #include "qtexttospeech_flite_plugin.h" |
| 5 | #include "qtexttospeech_flite.h" |
| 6 | |
| 7 | QT_BEGIN_NAMESPACE |
| 8 | |
| 9 | Q_LOGGING_CATEGORY(lcSpeechTtsFlite, "qt.speech.tts.flite") |
| 10 | |
| 11 | QTextToSpeechEngine *QTextToSpeechFlitePlugin::createTextToSpeechEngine( |
| 12 | const QVariantMap ¶meters, QObject *parent, QString *errorString) const |
| 13 | { |
| 14 | Q_UNUSED(errorString); |
| 15 | return new QTextToSpeechEngineFlite(parameters, parent); |
| 16 | } |
| 17 | |
| 18 | QT_END_NAMESPACE |
| 19 |
