File indexing completed on 2024-06-16 04:46:41

0001 /*  This file is part of the KDE project
0002     SPDX-FileCopyrightText: 2009 Alvaro Soliverez <asoliverez@gmail.com>
0003     SPDX-FileCopyrightText: 2017 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef REPORTCONTROLIMPL_H
0008 #define REPORTCONTROLIMPL_H
0009 
0010 #include <QWidget>
0011 
0012 namespace Ui {
0013 class ReportControl;
0014 }
0015 
0016 class ReportControl : public QWidget
0017 {
0018     Q_OBJECT
0019     Q_DISABLE_COPY(ReportControl)
0020 
0021 public:
0022     explicit ReportControl(QWidget *parent);
0023     ~ReportControl();
0024 
0025     Ui::ReportControl* ui;
0026 };
0027 #endif /* REPORTCONTROLIMPL_H */