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
3
4#include "qtexttospeech_speechd_plugin.h"
5#include "qtexttospeech_speechd.h"
6
7QTextToSpeechEngine *QTextToSpeechSpeechdPlugin::createTextToSpeechEngine(const QVariantMap &parameters, QObject *parent, QString *errorString) const
8{
9 Q_UNUSED(errorString);
10 return new QTextToSpeechEngineSpeechd(parameters, parent);
11}
12

source code of qtspeech/src/plugins/tts/speechdispatcher/qtexttospeech_speechd_plugin.cpp