summaryrefslogtreecommitdiffstats
path: root/Project/SumForm.cpp
diff options
context:
space:
mode:
authorThales1330 <thaleslima.ufu@gmail.com>2017-03-07 19:19:57 -0300
committerThales1330 <thaleslima.ufu@gmail.com>2017-03-07 19:19:57 -0300
commit009849e49967af659354a94a16c51cab5eb8b5a4 (patch)
tree7fe0a53626b6afa503e7f5905310e477ac0fa9b4 /Project/SumForm.cpp
parentb3be8e8ef6338bce2106d9c161bf3c7f7f7f9244 (diff)
downloadPSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.tar.gz
PSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.tar.xz
PSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.zip
Sum implementation start
Diffstat (limited to 'Project/SumForm.cpp')
-rw-r--r--Project/SumForm.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Project/SumForm.cpp b/Project/SumForm.cpp
new file mode 100644
index 0000000..d257771
--- /dev/null
+++ b/Project/SumForm.cpp
@@ -0,0 +1,14 @@
+#include "SumForm.h"
+#include "Sum.h"
+
+SumForm::SumForm(wxWindow* parent, Sum* sum)
+ : SumFormBase(parent)
+{
+ m_parent = parent;
+ m_sum = sum;
+}
+
+SumForm::~SumForm()
+{
+}
+