12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BOOST_UUID_NIL_GENERATOR_HPP
- #define BOOST_UUID_NIL_GENERATOR_HPP
- #include <boost/uuid/uuid.hpp>
- namespace boost {
- namespace uuids {
- struct nil_generator {
- typedef uuid result_type;
-
- uuid operator()() const {
-
- uuid u = {{0}};
- return u;
- }
- };
- inline uuid nil_uuid() {
- return nil_generator()();
- }
- }}
- #endif
|