Make basic parser

This commit is contained in:
manzerbredes 2015-03-14 18:44:05 +04:00
parent 9b99763c2e
commit 1f12bca33f
9 changed files with 191 additions and 188 deletions

View file

@ -54,3 +54,12 @@ void Website::setPassword(std::string password){
void Website::setDescription(std::string description){
this->description = description;
}
bool Website::operator==(const Website& website) const{
if((this->getId()).compare(website.getId())==0){
return true;
}
return false;
}