summaryrefslogtreecommitdiffstats
path: root/src/plugins/tts/ios/qtexttospeech_ios_plugin.cpp
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@qt.io>2016-08-31 12:55:51 +0200
committerFrederik Gladhorn <frederik.gladhorn@qt.io>2016-09-13 08:54:31 +0000
commite7bd63efa002878e0049925ebc971ae816377a0f (patch)
treeecdf589f3c97d28abeb46b379507e0d90bc62d3d /src/plugins/tts/ios/qtexttospeech_ios_plugin.cpp
parent577060af2daa198b3607911fd410bb1fa03ae861 (diff)
iOS: add tts backend for iOS
This will add a new tts backend for iOS. Change-Id: Ie8eec9cda260c7bfe8c1f5ed52152c2fdfd472da Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
Diffstat (limited to 'src/plugins/tts/ios/qtexttospeech_ios_plugin.cpp')
-rw-r--r--src/plugins/tts/ios/qtexttospeech_ios_plugin.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/plugins/tts/ios/qtexttospeech_ios_plugin.cpp b/src/plugins/tts/ios/qtexttospeech_ios_plugin.cpp
new file mode 100644
index 0000000..db03b13
--- /dev/null
+++ b/src/plugins/tts/ios/qtexttospeech_ios_plugin.cpp
@@ -0,0 +1,44 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the Qt Speech module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "qtexttospeech_ios_plugin.h"
+#include "qtexttospeech_ios.h"
+
+QTextToSpeechEngine *QTextToSpeechPluginIos::createTextToSpeechEngine(const QVariantMap &parameters, QObject *parent, QString *errorString) const
+{
+ Q_UNUSED(errorString)
+ return new QTextToSpeechEngineIos(parameters, parent);
+}