summaryrefslogtreecommitdiff
path: root/src/Model/Cell.hpp
diff options
context:
space:
mode:
authorkrilius <krilius@MacBook-Pro-de-Ulrich.local>2015-04-29 15:42:41 +0400
committerkrilius <krilius@MacBook-Pro-de-Ulrich.local>2015-04-29 15:42:41 +0400
commit3840053da7d3343eeb0c60854f20bcf72c58c45d (patch)
treee987e75210579e363d3ce07e4ecfe545130e4032 /src/Model/Cell.hpp
parent08113f5b6d701d6dee239225c17a9b5eb47de0c1 (diff)
First main created
Diffstat (limited to 'src/Model/Cell.hpp')
-rw-r--r--src/Model/Cell.hpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/Model/Cell.hpp b/src/Model/Cell.hpp
index 888c63c..7775bf5 100644
--- a/src/Model/Cell.hpp
+++ b/src/Model/Cell.hpp
@@ -1,17 +1,28 @@
#ifndef DEF_CELL
#define DEF_CELL
-/* Cell.cpp
+/* Cell.h
* Defines the class Cell
* A cell represents a cell in the grid
* Creators : krilius, manzerbredes
* Date : 29/04/2015 */
#include <iostream>
-#include <SFML/SFML.h>
+#include <string>
class Cell
{
+ private:
+ std::string m_value;
+
+ public:
+ Cell();
+ Cell(std::string value);
+ ~Cell();
+
+ // Describes the cell in a terminal
+ std::string description();
+
};
#endif