diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-20 10:57:03 +0400 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-20 10:57:03 +0400 |
| commit | 45f7cc5d27b338dae1d36c211cc5720c82f3de35 (patch) | |
| tree | 38c356a4e5ba77520e59964f25cde28527e552bd /ParserClass/AbstractIDManager.hpp | |
| parent | eb267792cd70a763bf2dcbfce6e7a09251b3913f (diff) | |
Change file architecture
Diffstat (limited to 'ParserClass/AbstractIDManager.hpp')
| -rw-r--r-- | ParserClass/AbstractIDManager.hpp | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/ParserClass/AbstractIDManager.hpp b/ParserClass/AbstractIDManager.hpp deleted file mode 100644 index 67d5f6f..0000000 --- a/ParserClass/AbstractIDManager.hpp +++ /dev/null @@ -1,59 +0,0 @@ -/** - * @file AbstractIDManager.hpp - * @brief AbstractIDManager class definitions - * @author manzerbredes - * @date 11 Mars 2015 - * - * Contain all definitions of AbstractIDManager class. - * If you want to manage id in class (like container), use - * this class as superclass. - * - */ - -//----- std ----- -#include <string> -#include <sstream> - - -//----- boost ----- -#include <boost/uuid/uuid.hpp> // uuid class -#include <boost/uuid/uuid_generators.hpp> // generators -#include <boost/uuid/uuid_io.hpp> // streaming operators etc. - - - - -/** - * @class AbstractIDManager AbstractIDManager.hpp "/CryptClass/AbstractIDManager.hpp" - * @brief Managing ID - * @author manzerbredes - * - * This class should not be instantiate directly. - * - */ - class AbstractIDManager{ - - - public: - //Constructor - AbstractIDManager(); - - //Constructor, init with id - AbstractIDManager(std::string); - - //Destructor - ~AbstractIDManager(); - - - //Getters and setters - std::string getId() const; - void setId(std::string id); - - - private: - //Generate and random id - std::string generateId(); - - std::string id; ///< String id attribute - - }; |
