Capabilities2 0.3.0
Loading...
Searching...
No Matches
uuid_generator.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
6{
8{
9public:
15 static const std::string gen_uuid_str();
16
17private:
18 // delete constructor and assignment operator to prevent instantiation
19 UUIDGenerator() = delete;
20 UUIDGenerator(const UUIDGenerator&) = delete;
22};
23} // namespace capabilities2_events
Definition uuid_generator.hpp:8
UUIDGenerator(const UUIDGenerator &)=delete
UUIDGenerator & operator=(const UUIDGenerator &)=delete
static const std::string gen_uuid_str()
generate a uuid string
Definition uuid_generator.cpp:11
Definition event_base.hpp:14