Begin parser...
This commit is contained in:
parent
aa249b5700
commit
c93be89ea6
5 changed files with 244 additions and 8 deletions
|
@ -7,3 +7,40 @@
|
|||
* Contain all implementations of Website class.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include "Website.hpp"
|
||||
|
||||
std::string Website::getTitle(){
|
||||
return this->title;
|
||||
}
|
||||
std::string Website::getUrl(){
|
||||
return this->url;
|
||||
}
|
||||
std::string Website::getUsername(){
|
||||
return this->username;
|
||||
}
|
||||
std::string Website::getPassword(){
|
||||
return this->password;
|
||||
}
|
||||
std::string Website::getDescription(){
|
||||
return this->description;
|
||||
}
|
||||
|
||||
|
||||
|
||||
void Website::setTitle(std::string title){
|
||||
this->title = title;
|
||||
}
|
||||
void Website::setUrl(std::string url){
|
||||
this->url = url;
|
||||
}
|
||||
void Website::setUsername(std::string username){
|
||||
this->username = username;
|
||||
}
|
||||
void Website::setPassword(std::string password){
|
||||
this->password = password;
|
||||
}
|
||||
void Website::setDescription(std::string description){
|
||||
this->description = description;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue