From 41897f295fbaf4d715a6fc099c81d4e15b48e19b Mon Sep 17 00:00:00 2001 From: manzerbredes Date: Wed, 11 Mar 2015 19:53:47 +0400 Subject: Update ParserClass files --- ParserClass/FileManContainer/Website.hpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'ParserClass/FileManContainer/Website.hpp') diff --git a/ParserClass/FileManContainer/Website.hpp b/ParserClass/FileManContainer/Website.hpp index 01c41f9..ceb21ad 100644 --- a/ParserClass/FileManContainer/Website.hpp +++ b/ParserClass/FileManContainer/Website.hpp @@ -27,6 +27,10 @@ */ #include +#include +#include // uuid class +#include // generators +#include // streaming operators etc. @@ -43,10 +47,13 @@ class Website{ public: + Website(); + /** * @brief Containner getters. */ + std::string getId(); std::string getTitle(); std::string getUrl(); std::string getUsername(); @@ -57,6 +64,7 @@ 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); @@ -66,7 +74,8 @@ class Website{ private: - std::string title; ///< Title en the website + 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 std::string password; ///< password of the account -- cgit v1.2.3