27 lines
231 B
C++
27 lines
231 B
C++
#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;
|
|
}
|
|
|