blob: 92819153ad28717f32b8aeab6c30c54541c02cfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
};
|