From 45f7cc5d27b338dae1d36c211cc5720c82f3de35 Mon Sep 17 00:00:00 2001 From: manzerbredes Date: Fri, 20 Mar 2015 10:57:03 +0400 Subject: Change file architecture --- ParserClass/FileManContainer/Website.cpp | 67 -------------------------- ParserClass/FileManContainer/Website.hpp | 83 -------------------------------- 2 files changed, 150 deletions(-) delete mode 100644 ParserClass/FileManContainer/Website.cpp delete mode 100644 ParserClass/FileManContainer/Website.hpp (limited to 'ParserClass/FileManContainer') diff --git a/ParserClass/FileManContainer/Website.cpp b/ParserClass/FileManContainer/Website.cpp deleted file mode 100644 index f65a66d..0000000 --- a/ParserClass/FileManContainer/Website.cpp +++ /dev/null @@ -1,67 +0,0 @@ -/** - * @file Website.cpp - * @brief Website class definitions - * @author manzerbredes - * @date 11 Mars 2015 - * - * Contain all implementations of Website class. - * - */ - - -#include "Website.hpp" - - -//Constructor -Website::Website(){ - -} - - - -//----- Getters ----- -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; -} - - - -//----- Setters ----- -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; -} - - - -//Equality comparator -bool Website::operator==(const Website& website) const{ - if((this->getId()).compare(website.getId())==0){ - return true; - } - return false; -} - diff --git a/ParserClass/FileManContainer/Website.hpp b/ParserClass/FileManContainer/Website.hpp deleted file mode 100644 index cb293d4..0000000 --- a/ParserClass/FileManContainer/Website.hpp +++ /dev/null @@ -1,83 +0,0 @@ -/** - * @file Website.hpp - * @brief Website class definitions - * @author manzerbredes - * @date 11 Mars 2015 - * - * Contain all definitions of Website class. - * - */ - -#ifndef __WEBSITE__ -#define __WEBSITE__ - -#include - - -/** - * @class FileManIOFile FileManIOFile.hpp "/CryptClass/FileManIOFile.hpp" - * @brief Class for quick open and close encrypted file. - * @author manzerbredes - * - * -----File organisation----- - * - * 16 first bytes : md5 of decrypted file - * rest of the file : data encrypted (ASE for now) - * - */ - -#include -#include "AbstractIDManager.hpp" - -/** - * @class Website Website.hpp "/ParserClass/FileManContainer/Website.hpp" - * @brief Class for quick open and close encrypted file. - * @author manzerbredes - * - * Container for website data. - * - */ -class Website : public AbstractIDManager { - - - public: - - Website(); - - /** - * @brief Containner getters. - */ - - std::string getTitle(); - std::string getUrl(); - std::string getUsername(); - std::string getPassword(); - std::string getDescription(); - - - /** - * @brief Containner setters. - */ - void setTitle(std::string title); - void setUrl(std::string url); - void setUsername(std::string username); - void setPassword(std::string password); - void setDescription(std::string description); - - - /** - * @brief Equality comparator - */ - bool operator==(const Website& website) const; - - private: - - 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 - std::string description; ///< Description of the website -}; - - -#endif -- cgit v1.2.3