mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
30 lines
642 B
C++
30 lines
642 B
C++
#ifndef SPROUT_UUID_NIL_GENERATOR_HPP
|
|
#define SPROUT_UUID_NIL_GENERATOR_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/uuid/uuid.hpp>
|
|
|
|
namespace sprout {
|
|
namespace uuids {
|
|
//
|
|
// nil_generator
|
|
//
|
|
class nil_generator {
|
|
public:
|
|
typedef sprout::uuids::uuid result_type;
|
|
public:
|
|
SPROUT_CONSTEXPR result_type operator()() const {
|
|
return result_type{{0}};
|
|
}
|
|
};
|
|
//
|
|
// nil_uuid
|
|
//
|
|
inline SPROUT_CONSTEXPR sprout::uuids::uuid
|
|
nil_uuid() {
|
|
return sprout::uuids::nil_generator()();
|
|
}
|
|
} // namespace uuids
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_UUID_NIL_GENERATOR_HPP
|