#ifndef BOOST_UUID_RANDOM_GENERATOR_HPP_INCLUDED #define BOOST_UUID_RANDOM_GENERATOR_HPP_INCLUDED // Copyright 2010 Andy Tompkins. // Copyright 2017 James E. King III // Copyright 2024 Peter Dimov // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include #include namespace boost { namespace uuids { // the default random generator class random_generator: public basic_random_generator { }; // only provided for compatibility with 1.85 using random_generator_mt19937 = basic_random_generator; // only provided for compatibility with 1.85 using random_generator_pure = basic_random_generator; }} // namespace boost::uuids #endif // BOOST_UUID_RANDOM_GENERATOR_HPP_INCLUDED