diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-01 17:43:54 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-01 17:43:54 -0300 |
commit | afb0e6e08d3911b7387799f5c465fd59ca26a484 (patch) | |
tree | 7b9b24d512813837c64d6cc9b2e005cd9791b5e6 /Project/ExponentialForm.h | |
parent | a684d5c9c9dd131060b5a36d7c7844ae197fcfd1 (diff) | |
download | PSP.git-afb0e6e08d3911b7387799f5c465fd59ca26a484.tar.gz PSP.git-afb0e6e08d3911b7387799f5c465fd59ca26a484.tar.xz PSP.git-afb0e6e08d3911b7387799f5c465fd59ca26a484.zip |
Constant implemented
Missing: gain and io
Diffstat (limited to 'Project/ExponentialForm.h')
-rw-r--r-- | Project/ExponentialForm.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Project/ExponentialForm.h b/Project/ExponentialForm.h new file mode 100644 index 0000000..c53ef9f --- /dev/null +++ b/Project/ExponentialForm.h @@ -0,0 +1,21 @@ +#ifndef EXPONENTIALFORM_H +#define EXPONENTIALFORM_H +#include "ElementForm.h" + +class Exponential; + +class ExponentialForm : public ExponentialFormBase +{ + public: + ExponentialForm(wxWindow* parent, Exponential* exponential); + virtual ~ExponentialForm(); + virtual bool ValidateData(); + + protected: + virtual void OnCancelButtonClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); } + virtual void OnOKButtonClick(wxCommandEvent& event); + + wxWindow* m_parent = NULL; + Exponential* m_exponential = NULL; +}; +#endif // EXPONENTIALFORM_H |