From 3840053da7d3343eeb0c60854f20bcf72c58c45d Mon Sep 17 00:00:00 2001 From: krilius Date: Wed, 29 Apr 2015 15:42:41 +0400 Subject: First main created --- src/Model/Cell.hpp | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'src/Model/Cell.hpp') 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 -#include +#include class Cell { + private: + std::string m_value; + + public: + Cell(); + Cell(std::string value); + ~Cell(); + + // Describes the cell in a terminal + std::string description(); + }; #endif -- cgit v1.2.3