summaryrefslogtreecommitdiff
path: root/src/Model/Cell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Cell.cpp')
-rw-r--r--src/Model/Cell.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Model/Cell.cpp b/src/Model/Cell.cpp
index e69de29..24fc53c 100644
--- a/src/Model/Cell.cpp
+++ b/src/Model/Cell.cpp
@@ -0,0 +1,27 @@
+#include "Cell.hpp"
+
+// Constructors
+
+Cell::Cell()
+{
+ m_value = " ";
+}
+
+Cell::Cell(std::string value)
+{
+ m_value = value;
+}
+
+// Destructor
+
+Cell::~Cell()
+{
+}
+
+// Description
+
+void Cell::description()
+{
+ return m_value;
+}
+