25 lines
333 B
C++
25 lines
333 B
C++
![]() |
#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;
|
||
|
}
|