File indexing completed on 2024-05-05 04:51:38

0001 /*
0002     SPDX-FileCopyrightText: 1998-2008 Sebastian Trueg <trueg@k3b.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef _K3B_PLUGIN_OPTION_TAB_H_
0008 #define _K3B_PLUGIN_OPTION_TAB_H_
0009 
0010 #include "ui_base_k3bpluginoptiontab.h"
0011 
0012 
0013 namespace K3b {
0014     class PluginOptionTab : public QWidget, public Ui::base_K3bPluginOptionTab
0015     {
0016         Q_OBJECT
0017 
0018     public:
0019         explicit PluginOptionTab( QWidget* parent = 0 );
0020         ~PluginOptionTab() override;
0021     };
0022 }
0023 
0024 #endif