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

43 lines
604 B
C++
Raw Normal View History

2015-05-01 15:50:10 +02:00
#include "./StringElement.hpp"
StringElement::StringElement(){
2015-05-01 18:19:32 +02:00
this->m_value="";
2015-05-01 15:50:10 +02:00
}
StringElement::~StringElement(){
}
std::string StringElement::getValue(){
return this->m_value;
}
void StringElement::setValue(std::string value){
this->m_value=value;
}
std::string StringElement::description(){
2015-05-01 18:19:32 +02:00
if(this->m_value==""){
return " ";
}
2015-05-01 15:50:10 +02:00
return this->m_value;
}
2015-05-01 18:19:32 +02:00
bool StringElement::isEmpty(){
if(this->m_value==""){
return true;
}
return false;
}
2015-05-02 11:06:54 +02:00
bool StringElement::equals(StringElement *element){
if(this->m_value.compare(element->m_value) == 0){
2015-05-01 18:19:32 +02:00
return true;
}
2015-05-02 11:06:54 +02:00
return false;
2015-05-01 18:19:32 +02:00
}