summaryrefslogtreecommitdiffstats
path: root/Project/ExponentialForm.h
diff options
context:
space:
mode:
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