File indexing completed on 2024-12-22 04:40:15
0001 /* 0002 SPDX-FileCopyrightText: 2010-2022 Mladen Milinkovic <max@smoothware.net> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef MPLAYERCONFIGWIDGET_H 0008 #define MPLAYERCONFIGWIDGET_H 0009 0010 #include "ui_pocketsphinxconfigwidget.h" 0011 0012 namespace SubtitleComposer { 0013 class PocketSphinxConfigWidget : public QWidget, Ui::PocketSphinxConfigWidget 0014 { 0015 Q_OBJECT 0016 0017 public: 0018 explicit PocketSphinxConfigWidget(QWidget *parent = nullptr); 0019 virtual ~PocketSphinxConfigWidget(); 0020 }; 0021 } 0022 0023 #endif