summaryrefslogtreecommitdiffstats
path: root/Project/ExponentialForm.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-04-01 17:43:54 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-04-01 17:43:54 -0300
commitafb0e6e08d3911b7387799f5c465fd59ca26a484 (patch)
tree7b9b24d512813837c64d6cc9b2e005cd9791b5e6 /Project/ExponentialForm.h
parenta684d5c9c9dd131060b5a36d7c7844ae197fcfd1 (diff)
downloadPSP.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.h21
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