File indexing completed on 2024-12-15 04:00:59
0001 /* 0002 * SPDX-FileCopyrightText: 2019-2023 Mattia Basaglia <dev@dragon.best> 0003 * 0004 * SPDX-License-Identifier: GPL-3.0-or-later 0005 */ 0006 0007 #ifndef HELP_DIALOG_HPP 0008 #define HELP_DIALOG_HPP 0009 0010 #include "base_dialog.hpp" 0011 0012 namespace glaxnimate::android { 0013 0014 class HelpDialog : public BaseDialog 0015 { 0016 Q_OBJECT 0017 public: 0018 HelpDialog(QWidget* parent = nullptr); 0019 }; 0020 0021 } // namespace glaxnimate::android 0022 0023 #endif // HELP_DIALOG_HPP