summaryrefslogtreecommitdiff
path: root/ParserClass/FileManContainer/Website.hpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-03-20 10:57:03 +0400
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-03-20 10:57:03 +0400
commit45f7cc5d27b338dae1d36c211cc5720c82f3de35 (patch)
tree38c356a4e5ba77520e59964f25cde28527e552bd /ParserClass/FileManContainer/Website.hpp
parenteb267792cd70a763bf2dcbfce6e7a09251b3913f (diff)
Change file architecture
Diffstat (limited to 'ParserClass/FileManContainer/Website.hpp')
-rw-r--r--ParserClass/FileManContainer/Website.hpp83
1 files changed, 0 insertions, 83 deletions
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 <string>
-
-
-/**
- * @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 <string>
-#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