blob: c53ef9ff95c9fb2b9d320befddc0935f4a6c098f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|