AboutDialog.h 407 B

123456789101112131415161718192021222324252627
  1. // Copyright 2014 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <memory>
  6. #include <QDialog>
  7. // Predefinitions
  8. namespace Ui
  9. {
  10. class DAboutDialog;
  11. }
  12. class DAboutDialog : public QDialog
  13. {
  14. Q_OBJECT
  15. public:
  16. explicit DAboutDialog(QWidget* parent_widget = nullptr);
  17. ~DAboutDialog();
  18. private:
  19. std::unique_ptr<Ui::DAboutDialog> m_ui;
  20. };