| 181 | } |
| 182 | |
| 183 | IdGenerator::IdGenerator() |
| 184 | : implementation_(UUID_TIME_IMPL), |
| 185 | logger_(logging::LoggerFactory<IdGenerator>::getLogger()), |
| 186 | incrementor_(0) { |
| 187 | #ifndef WIN32 |
| 188 | uuid_impl_ = std::unique_ptr<uuid>(new uuid()); |
| 189 | #endif |
| 190 | } |
| 191 | |
| 192 | IdGenerator::~IdGenerator() = default; |
| 193 |
nothing calls this directly
no outgoing calls
no test coverage detected