File indexing completed on 2024-05-12 05:51:59

0001 /* This file is part of the KDE project
0002  *
0003  *  SPDX-FileCopyrightText: 2018 Gregor Mi <codestruct@posteo.org>
0004  *  SPDX-FileCopyrightText: 2019 Dominik Haumann <dhaumann@kde.org>
0005  *
0006  *  SPDX-License-Identifier: LGPL-2.0-or-later
0007  */
0008 #pragma once
0009 
0010 #include <QMainWindow>
0011 #include <memory>
0012 
0013 class TsTestApp : public QMainWindow
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     explicit TsTestApp(QWidget *parent = nullptr);
0019     ~TsTestApp() override;
0020 
0021 private:
0022     class Impl;
0023     std::unique_ptr<Impl> impl_;
0024 };