Make basic parser
This commit is contained in:
parent
9b99763c2e
commit
1f12bca33f
9 changed files with 191 additions and 188 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue