| 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_mock_plugin.h" |
| 5 | #include "qtexttospeech_mock.h" |
| 6 | |
| 7 | QTextToSpeechEngine *QTextToSpeechMockPlugin::createTextToSpeechEngine(const QVariantMap ¶meters, QObject *parent, QString *errorString) const |
| 8 | { |
| 9 | Q_UNUSED(errorString); |
| 10 | return new QTextToSpeechEngineMock(parameters, parent); |
| 11 | } |
| 12 |
