From 009849e49967af659354a94a16c51cab5eb8b5a4 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Tue, 7 Mar 2017 19:19:57 -0300 Subject: Sum implementation start --- Project/SumForm.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Project/SumForm.h (limited to 'Project/SumForm.h') 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 -- cgit