diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-03-30 11:10:06 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-03-30 11:10:06 -0300 |
commit | 045037ce8f2b106acbe5425245746a2dbed65c26 (patch) | |
tree | f81b4003f1ec6f835681c768c945065b1976da42 /Project/LimiterForm.h | |
parent | 3985018cdb8508b9970646ae4b9886ba4df6dd78 (diff) | |
download | PSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.tar.gz PSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.tar.xz PSP.git-045037ce8f2b106acbe5425245746a2dbed65c26.zip |
Exponencial under implementation
Diffstat (limited to 'Project/LimiterForm.h')
-rw-r--r-- | Project/LimiterForm.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Project/LimiterForm.h b/Project/LimiterForm.h new file mode 100644 index 0000000..f26ee9d --- /dev/null +++ b/Project/LimiterForm.h @@ -0,0 +1,21 @@ +#ifndef LIMITERFORM_H +#define LIMITERFORM_H +#include "ElementForm.h" + +class Limiter; + +class LimiterForm : public LimiterFormBase +{ + public: + LimiterForm(wxWindow* parent, Limiter* limiter); + virtual ~LimiterForm(); + virtual bool ValidateData(); + + protected: + virtual void OnCancelButtonClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); } + virtual void OnOKButtonClick(wxCommandEvent& event); + + wxWindow* m_parent = NULL; + Limiter* m_limiter = NULL; +}; +#endif // LIMITERFORM_H |