summaryrefslogtreecommitdiff
path: root/src/cell.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cell.cc')
-rw-r--r--src/cell.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cell.cc b/src/cell.cc
new file mode 100644
index 0000000..c5af933
--- /dev/null
+++ b/src/cell.cc
@@ -0,0 +1,12 @@
+
+#include "cell.h"
+
+Cell::Cell()
+{
+ cell_value = 0;
+}
+
+void Cell::set_value(int value)
+{
+ cell_value = value;
+}