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

48 lines
704 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;
}
bool StringElement::equals(StringElement const& element) const{
if(this->m_value.compare(element.m_value) == 0){
return true;
}
return true;
}
bool operator==(StringElement const& a, StringElement const& b){
return a.equals(b);
}