From 6fcf2131d319d8c9a7bff67defb83098e4fe5cab Mon Sep 17 00:00:00 2001 From: manzerbredes Date: Wed, 11 Mar 2015 21:32:36 +0400 Subject: Update ParserClass --- ParserClass/FileManContainer/Website.hpp | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'ParserClass/FileManContainer/Website.hpp') diff --git a/ParserClass/FileManContainer/Website.hpp b/ParserClass/FileManContainer/Website.hpp index ceb21ad..c370f3b 100644 --- a/ParserClass/FileManContainer/Website.hpp +++ b/ParserClass/FileManContainer/Website.hpp @@ -27,12 +27,7 @@ */ #include -#include -#include // uuid class -#include // generators -#include // streaming operators etc. - - +#include "AbstractIDManager.hpp" /** * @class Website Website.hpp "/ParserClass/FileManContainer/Website.hpp" @@ -42,7 +37,7 @@ * Container for website data. * */ -class Website{ +class Website : public AbstractIDManager { public: @@ -53,7 +48,6 @@ class Website{ * @brief Containner getters. */ - std::string getId(); std::string getTitle(); std::string getUrl(); std::string getUsername(); @@ -64,7 +58,6 @@ class Website{ /** * @brief Containner setters. */ - void setId(std::string title); void setTitle(std::string title); void setUrl(std::string url); void setUsername(std::string username); @@ -74,7 +67,6 @@ class Website{ private: - std::string id; ///< id of the website std::string title; ///< Title of the website std::string url; ///< Url of the website std::string username; ///< username of the account -- cgit v1.2.3