File indexing completed on 2024-05-05 05:53:55

0001 /*
0002   SPDX-FileCopyrightText: 2017 Kurt Hindenburg <kurt.hindenburg@gmail.com>
0003 
0004   SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #ifndef PARTINFO_H
0008 #define PARTINFO_H
0009 
0010 #include "ui_PartInfo.h"
0011 
0012 namespace Konsole
0013 {
0014 class PartInfoSettings : public QWidget, private Ui::PartInfoSettings
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     explicit PartInfoSettings(QWidget *parent = nullptr);
0020     ~PartInfoSettings() override;
0021 };
0022 }
0023 
0024 #endif