diff options
Diffstat (limited to 'Project/GeneralPropertiesForm.h')
-rw-r--r-- | Project/GeneralPropertiesForm.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Project/GeneralPropertiesForm.h b/Project/GeneralPropertiesForm.h new file mode 100644 index 0000000..585eb4d --- /dev/null +++ b/Project/GeneralPropertiesForm.h @@ -0,0 +1,15 @@ +#ifndef GENERALPROPERTIESFORM_H +#define GENERALPROPERTIESFORM_H +#include "PropertiesForm.h" + +class GeneralPropertiesForm : public GeneralPropertiesFormBase +{ +public: + GeneralPropertiesForm(wxWindow* parent); + virtual ~GeneralPropertiesForm(); +protected: + virtual void OnButtonCancelClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); } + virtual void OnButtonOKClick(wxCommandEvent& event); + virtual bool ValidateData(); +}; +#endif // GENERALPROPERTIESFORM_H |