File indexing completed on 2024-06-09 04:52:51

0001 /*
0002     SPDX-FileCopyrightText: 2007-2009 Sergio Pistone <sergio_pistone@yahoo.com.ar>
0003     SPDX-FileCopyrightText: 2010-2022 Mladen Milinkovic <max@smoothware.net>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef ERRORSCONFIGWIDGET_H
0009 #define ERRORSCONFIGWIDGET_H
0010 
0011 #include "ui_errorsconfigwidget.h"
0012 
0013 namespace SubtitleComposer {
0014 class ErrorsConfigWidget : public QWidget, private Ui::ErrorsConfigWidget
0015 {
0016     Q_OBJECT
0017 
0018     friend class ConfigDialog;
0019 
0020 public:
0021     explicit ErrorsConfigWidget(QWidget *parent = 0);
0022     virtual ~ErrorsConfigWidget();
0023 };
0024 }
0025 
0026 #endif