Update ParserClass

This commit is contained in:
manzerbredes 2015-03-11 21:32:36 +04:00
parent 8a14c38655
commit 6fcf2131d3
4 changed files with 60 additions and 48 deletions

View file

@ -13,18 +13,13 @@
Website::Website(){
boost::uuids::uuid uuid = boost::uuids::random_generator()();
std::stringstream ss;
ss << uuid;
this->id=ss.str();
}
std::string Website::getId(){
return this->id;
}
std::string Website::getTitle(){
return this->title;
}
@ -43,9 +38,7 @@ std::string Website::getDescription(){
void Website::setId(std::string id){
this->id = id;
}
void Website::setTitle(std::string title){
this->title = title;
}