summaryrefslogtreecommitdiffstats
path: root/Project/SumForm.cpp
diff options
context:
space:
mode:
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()
+{
+}
+