File indexing completed on 2024-04-28 15:51:42

0001 /*
0002     SPDX-FileCopyrightText: 2006 Pino Toscano <toscano.pino@tiscali.it>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef _DLGPERFORMANCE_H
0008 #define _DLGPERFORMANCE_H
0009 
0010 #include <QWidget>
0011 
0012 class QLabel;
0013 
0014 class DlgPerformance : public QWidget
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     explicit DlgPerformance(QWidget *parent = nullptr);
0020 
0021 protected Q_SLOTS:
0022     void slotMemoryLevelSelected(int which);
0023 
0024 protected:
0025     QLabel *m_memoryExplanationLabel;
0026 };
0027 
0028 #endif