From 8bbb3f407cccdf0783c49025825a0f0b9ebe3480 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Thu, 14 Sep 2017 21:06:39 -0300 Subject: About project implemented --- Project/AboutForm.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Project/AboutForm.h (limited to 'Project/AboutForm.h') diff --git a/Project/AboutForm.h b/Project/AboutForm.h new file mode 100644 index 0000000..ba64324 --- /dev/null +++ b/Project/AboutForm.h @@ -0,0 +1,17 @@ +#ifndef ABOUTFORM_H +#define ABOUTFORM_H +#include "PropertiesForm.h" + +#include + +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 -- cgit