diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-11 21:32:36 +0400 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-11 21:32:36 +0400 |
| commit | 6fcf2131d319d8c9a7bff67defb83098e4fe5cab (patch) | |
| tree | 6cdde1dd6a2c3376668863fd08abbdab5e730387 /ParserClass/AbstractIDManager.hpp | |
| parent | 8a14c386555b5b9ccd8d850713bd7732cdeb3fa3 (diff) | |
Update ParserClass
Diffstat (limited to 'ParserClass/AbstractIDManager.hpp')
| -rw-r--r-- | ParserClass/AbstractIDManager.hpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/ParserClass/AbstractIDManager.hpp b/ParserClass/AbstractIDManager.hpp index e69de29..9281915 100644 --- a/ParserClass/AbstractIDManager.hpp +++ b/ParserClass/AbstractIDManager.hpp @@ -0,0 +1,36 @@ +/** + * @file AbstractIDManager.cpp + * @brief AbstractIDManager class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all definitions of AbstractIDManager class. + * + */ + +#include <string> +#include <sstream> +#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{ + + + public: + AbstractIDManager(); + + std::string getId(); + void setId(std::string id); + + std::string generateId(); + + private: + + std::string id; + + }; |
