summaryrefslogtreecommitdiffstats
path: root/src/plugins/tts/macos/qtexttospeech_macos_plugin.cpp
blob: 787f5826cbbe8c86b63ebafacfa2dc6991b9664b (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only

#include "qtexttospeech_macos_plugin.h"
#include "qtexttospeech_macos.h"

QTextToSpeechEngine *QTextToSpeechMacOSPlugin::createTextToSpeechEngine(const QVariantMap &parameters, QObject *parent, QString *errorString) const
{
    Q_UNUSED(errorString);
    return new QTextToSpeechEngineMacOS(parameters, parent);
}