diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-01 15:50:10 +0200 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-01 15:50:10 +0200 |
| commit | 683d7946798634c35df165bf40a97d78f947751c (patch) | |
| tree | 6dd80b60ed63ec92d7b6e7f291079493f64f219b /src/Model/Elements/StringElement.cpp | |
| parent | 048f1e17b752d2af53db82c1861002283fc300fa (diff) | |
Add template support to Cell class
Diffstat (limited to 'src/Model/Elements/StringElement.cpp')
| -rw-r--r-- | src/Model/Elements/StringElement.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Model/Elements/StringElement.cpp b/src/Model/Elements/StringElement.cpp new file mode 100644 index 0000000..f93fe3b --- /dev/null +++ b/src/Model/Elements/StringElement.cpp @@ -0,0 +1,24 @@ +#include "./StringElement.hpp" + + +StringElement::StringElement(){ + this->m_value="."; +} + +StringElement::~StringElement(){ + +} + + + +std::string StringElement::getValue(){ + return this->m_value; +} + +void StringElement::setValue(std::string value){ + this->m_value=value; +} + +std::string StringElement::description(){ + return this->m_value; +} |
