diff options
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; + + }; |
