1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef ABOUTFORM_H #define ABOUTFORM_H #include "PropertiesForm.h" #include <wx/textfile.h> #include <wx/stdpaths.h> class AboutForm : public AboutFormBase { public: AboutForm(wxWindow* parent); virtual ~AboutForm(); virtual void Init(); protected: virtual void OnOKButtonClick(wxCommandEvent& event) { EndModal(wxID_OK); }; }; #endif // ABOUTFORM_H