Scanframe Modular Application 0.1.0
Loading...
Searching...
No Matches
TextToSpeechPlugin.h
Go to the documentation of this file.
1#pragma once
2#include <QtTextToSpeech/QTextToSpeechPlugin>
3
4namespace sf
5{
6
8 : public QObject
9 , public QTextToSpeechPlugin
10{
11 Q_OBJECT
12 Q_PLUGIN_METADATA(IID "org.qt-project.qt.speech.tts.plugin/6.0" FILE "plugin.json")
13 Q_INTERFACES(QTextToSpeechPlugin)
14
15 public:
16 QTextToSpeechEngine* createTextToSpeechEngine(const QVariantMap& parameters, QObject* parent, QString* errorString) const override;
17};
18
19}// namespace sf
Definition TextToSpeechPlugin.h:10
QTextToSpeechEngine * createTextToSpeechEngine(const QVariantMap &parameters, QObject *parent, QString *errorString) const override
Definition Application.h:10