Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-26 08:55:46

0001 #ifndef BOOST_UUID_NAMESPACES_HPP_INCLUDED
0002 #define BOOST_UUID_NAMESPACES_HPP_INCLUDED
0003 
0004 // Copyright 2010 Andy Tompkins
0005 // Copyright 2024 Peter Dimov
0006 // Distributed under the Boost Software License, Version 1.0.
0007 // https://www.boost.org/LICENSE_1_0.txt
0008 
0009 #include <boost/uuid/uuid.hpp>
0010 
0011 namespace boost {
0012 namespace uuids {
0013 namespace ns {
0014 
0015 inline uuid dns() noexcept
0016 {
0017     uuid result = {{
0018         0x6b, 0xa7, 0xb8, 0x10, 0x9d, 0xad, 0x11, 0xd1,
0019         0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8 }};
0020     return result;
0021 }
0022 
0023 inline uuid url() noexcept
0024 {
0025     uuid result = {{
0026         0x6b, 0xa7, 0xb8, 0x11, 0x9d, 0xad, 0x11, 0xd1,
0027         0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8 }};
0028     return result;
0029 }
0030 
0031 inline uuid oid() noexcept
0032 {
0033     uuid result = {{
0034         0x6b, 0xa7, 0xb8, 0x12, 0x9d, 0xad, 0x11, 0xd1,
0035         0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8 }};
0036     return result;
0037 }
0038 
0039 inline uuid x500dn() noexcept
0040 {
0041     uuid result = {{
0042         0x6b, 0xa7, 0xb8, 0x14, 0x9d, 0xad, 0x11, 0xd1,
0043         0x80, 0xb4, 0x00, 0xc0, 0x4f, 0xd4, 0x30, 0xc8 }};
0044     return result;
0045 }
0046 
0047 }}} // namespace boost::uuids::ns
0048 
0049 #endif // BOOST_UUID_NAMESPACES_HPP_INCLUDED