blob: f93fe3b22f921f22b9e697aeafbc4ef90faadb93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
}
|