From 6fcf2131d319d8c9a7bff67defb83098e4fe5cab Mon Sep 17 00:00:00 2001 From: manzerbredes Date: Wed, 11 Mar 2015 21:32:36 +0400 Subject: Update ParserClass --- ParserClass/AbstractIDManager.hpp | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'ParserClass/AbstractIDManager.hpp') 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 +#include +#include // uuid class +#include // generators +#include // streaming operators etc. + + + + + + class AbstractIDManager{ + + + public: + AbstractIDManager(); + + std::string getId(); + void setId(std::string id); + + std::string generateId(); + + private: + + std::string id; + + }; -- cgit v1.2.3