12345678910111213141516171819 |
- #pragma once
- #include <wx/dialog.h>
- class AboutDolphin : public wxDialog
- {
- public:
- AboutDolphin(wxWindow *parent,
- wxWindowID id = wxID_ANY,
- const wxString &title = _("About Dolphin"),
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize,
- long style = wxDEFAULT_DIALOG_STYLE);
- };
|