diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-10-21 17:44:27 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-10-21 17:44:27 -0200 |
commit | 58cc8933337d4681025f890af78bfddc45c212d0 (patch) | |
tree | ffe3737ba2b86aab8d4832d9a2c5533fbc63342c /Project/LoadForm.h | |
parent | dc8e7b67eb2141cfbed0f26ac50a8d14104f391b (diff) | |
download | PSP.git-58cc8933337d4681025f890af78bfddc45c212d0.tar.gz PSP.git-58cc8933337d4681025f890af78bfddc45c212d0.tar.xz PSP.git-58cc8933337d4681025f890af78bfddc45c212d0.zip |
Load form under implementation
Diffstat (limited to 'Project/LoadForm.h')
-rw-r--r-- | Project/LoadForm.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Project/LoadForm.h b/Project/LoadForm.h new file mode 100644 index 0000000..ae3f92f --- /dev/null +++ b/Project/LoadForm.h @@ -0,0 +1,21 @@ +#ifndef LOADFORM_H +#define LOADFORM_H +#include "ElementForm.h" + +class Load; + +class LoadForm : public LoadFormBase +{ +public: + LoadForm(wxWindow* parent, Load* load); + virtual ~LoadForm(); + +protected: + virtual void OnCancelButtonClick(wxCommandEvent& event); + virtual void OnOnButtonClick(wxCommandEvent& event); + virtual void OnStabilityButtonClick(wxCommandEvent& event); + + wxWindow* m_parent; + Load* m_load; +}; +#endif // LOADFORM_H |