2P11/src/Model/Elements/StringElement.cpp

25 lines
333 B
C++
Raw Normal View History

2015-05-01 15:50:10 +02:00
#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;
}