diff options
Diffstat (limited to 'ParserClass/AbstractIDManager.hpp')
| -rw-r--r-- | ParserClass/AbstractIDManager.hpp | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/ParserClass/AbstractIDManager.hpp b/ParserClass/AbstractIDManager.hpp index 9281915..a18d1b2 100644 --- a/ParserClass/AbstractIDManager.hpp +++ b/ParserClass/AbstractIDManager.hpp @@ -1,15 +1,21 @@ /** - * @file AbstractIDManager.cpp + * @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. @@ -17,20 +23,37 @@ - +/** + * @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(); void setId(std::string id); - std::string generateId(); private: + //Generate and random id + std::string generateId(); - std::string id; + std::string id; ///< String id attribute }; |
