diff options
Diffstat (limited to 'Project/SumForm.h')
-rw-r--r-- | Project/SumForm.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Project/SumForm.h b/Project/SumForm.h new file mode 100644 index 0000000..11d9a51 --- /dev/null +++ b/Project/SumForm.h @@ -0,0 +1,18 @@ +#ifndef SUMFORM_H +#define SUMFORM_H + +#include "ElementForm.h" + +class Sum; + +class SumForm : public SumFormBase +{ +public: + SumForm(wxWindow* parent, Sum* sum); + virtual ~SumForm(); + +protected: + wxWindow* m_parent = NULL; + Sum* m_sum = NULL; +}; +#endif // SUMFORM_H |