summaryrefslogtreecommitdiffstats
path: root/Project/LoadForm.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/LoadForm.h')
-rw-r--r--Project/LoadForm.h21
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