2P11/src/Model/Cell.cpp
2015-04-29 20:52:18 +04:00

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;
}