summaryrefslogtreecommitdiff
path: root/src/Model/Cell.hpp
diff options
context:
space:
mode:
authorkrilius <ulrich.lejoyeux@gmail.com>2015-04-29 22:28:29 +0400
committerkrilius <ulrich.lejoyeux@gmail.com>2015-04-29 22:28:29 +0400
commita3b805ee7b96d1d693c4108f0104650cfd60b565 (patch)
tree0fe6451222c135e0cadcc3011829a4f8ef02dc6d /src/Model/Cell.hpp
parente241abc9df586cce683d6ae89e1d02c13084a10f (diff)
first step of the model
Diffstat (limited to 'src/Model/Cell.hpp')
-rw-r--r--src/Model/Cell.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Model/Cell.hpp b/src/Model/Cell.hpp
index 7775bf5..badd070 100644
--- a/src/Model/Cell.hpp
+++ b/src/Model/Cell.hpp
@@ -20,6 +20,10 @@ class Cell
Cell(std::string value);
~Cell();
+ bool isEmpty();
+ bool equals(Cell * otherCell);
+ std::string getValue();
+
// Describes the cell in a terminal
std::string description();