diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2017-03-07 19:19:57 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2017-03-07 19:19:57 -0300 |
commit | 009849e49967af659354a94a16c51cab5eb8b5a4 (patch) | |
tree | 7fe0a53626b6afa503e7f5905310e477ac0fa9b4 /Project/SumForm.h | |
parent | b3be8e8ef6338bce2106d9c161bf3c7f7f7f9244 (diff) | |
download | PSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.tar.gz PSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.tar.xz PSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.zip |
Sum implementation start
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 |