AboutDolphin.h 426 B

12345678910111213141516171819
  1. // Copyright 2008 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include <wx/dialog.h>
  6. class AboutDolphin : public wxDialog
  7. {
  8. public:
  9. AboutDolphin(wxWindow *parent,
  10. wxWindowID id = wxID_ANY,
  11. const wxString &title = _("About Dolphin"),
  12. const wxPoint& pos = wxDefaultPosition,
  13. const wxSize& size = wxDefaultSize,
  14. long style = wxDEFAULT_DIALOG_STYLE);
  15. };