summaryrefslogtreecommitdiffstats
path: root/src/plugins/tts/darwin/qtexttospeech_darwin_plugin.cpp
blob: f9ebf239d87ea18f7d9878980fbccfc4e87cc2e1 (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 OR GPL-3.0-only

#include "qtexttospeech_darwin_plugin.h"
#include "qtexttospeech_darwin.h"

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