2P11/src/Model/Elements/StringElement.cpp
2015-05-02 11:06:54 +02:00

42 lines
604 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(){
if(this->m_value==""){
return " ";
}
return this->m_value;
}
bool StringElement::isEmpty(){
if(this->m_value==""){
return true;
}
return false;
}
bool StringElement::equals(StringElement *element){
if(this->m_value.compare(element->m_value) == 0){
return true;
}
return false;
}