// SPDX-FileCopyrightText: 2022 Gary Wang // // SPDX-License-Identifier: MIT #ifndef ABOUTDIALOG_H #define ABOUTDIALOG_H #include QT_BEGIN_NAMESPACE namespace Ui { class AboutDialog; } QT_END_NAMESPACE class AboutDialog : public QDialog { Q_OBJECT public: explicit AboutDialog(QWidget *parent = nullptr); ~AboutDialog() override; QSize sizeHint() const override; private: QT_PREPEND_NAMESPACE(Ui::AboutDialog) *ui; }; #endif // ABOUTDIALOG_H