File indexing completed on 2024-05-05 05:45:47

0001 /*
0002     SPDX-FileCopyrightText: 2001-2003 Otto Bruggeman <otto.bruggeman@home.nl>
0003     SPDX-FileCopyrightText: 2001-2003 John Firebaugh <jfirebaugh@kde.org>
0004     SPDX-FileCopyrightText: 2007-2011 Kevin Kofler <kevin.kofler@chello.at>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #ifndef KOMPARESAVEOPTIONSBASE_H
0010 #define KOMPARESAVEOPTIONSBASE_H
0011 
0012 #include <QVariant>
0013 
0014 #include "ui_komparesaveoptionsbase.h"
0015 
0016 class KompareSaveOptionsBase : public QWidget, public Ui::KompareSaveOptionsBase
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     explicit KompareSaveOptionsBase(QWidget* parent = nullptr);
0022     ~KompareSaveOptionsBase() override;
0023 
0024 protected Q_SLOTS:
0025     virtual void languageChange();
0026 
0027 };
0028 
0029 #endif // KOMPARESAVEOPTIONSBASE_H