Warning, file /include/boost/uuid/random_generator.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #ifndef BOOST_UUID_RANDOM_GENERATOR_HPP_INCLUDED
0002 #define BOOST_UUID_RANDOM_GENERATOR_HPP_INCLUDED
0003
0004
0005
0006
0007
0008
0009
0010 #include <boost/uuid/basic_random_generator.hpp>
0011 #include <boost/uuid/detail/random_device.hpp>
0012 #include <boost/uuid/detail/chacha20.hpp>
0013
0014 namespace boost {
0015 namespace uuids {
0016
0017
0018 class random_generator: public basic_random_generator<detail::chacha20_12>
0019 {
0020 };
0021
0022
0023 using random_generator_mt19937 = basic_random_generator<std::mt19937>;
0024
0025
0026 using random_generator_pure = basic_random_generator<detail::random_device>;
0027
0028 }}
0029
0030 #endif