File indexing completed on 2024-05-19 04:01:20

0001 /*
0002     SPDX-FileCopyrightText: 2016 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 
0007 #ifndef ORWELL_H
0008 #define ORWELL_H
0009 
0010 #include <QMainWindow>
0011 
0012 #include <memory>
0013 
0014 namespace Ui { class Orwell; }
0015 
0016 class Orwell : public QMainWindow
0017 {
0018 public:
0019     explicit Orwell(QWidget *parent = nullptr);
0020     ~Orwell() override;
0021 
0022 private:
0023     void loadStats();
0024     void writeStats();
0025 
0026     std::unique_ptr<Ui::Orwell> ui;
0027 };
0028 
0029 #endif