#include "Cell.hpp" // Constructors Cell::Cell() { m_value = " "; } Cell::Cell(std::string value) { m_value = value; } // Destructor Cell::~Cell() { } // Description std::string Cell::description() { return m_value; }