/*============================================================================= Copyright (c) 2011-2015 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_UUID_DETAIL_TABLE_HPP #define SPROUT_UUID_DETAIL_TABLE_HPP #include #include #include #include #include namespace sprout { namespace uuids { namespace detail { SPROUT_LITERAL_STRING_DEF(digits, "0123456789abcdefABCDEF", 22); SPROUT_LITERAL_CHAR_DEF(dash, '-'); SPROUT_LITERAL_CHAR_DEF(lbrace, '{'); SPROUT_LITERAL_CHAR_DEF(rbrace, '}'); template struct values; # define SPROUT_UUID_TABLE_DEF \ {{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 10, 11, 12, 13, 14, 15}} template<> struct values { public: typedef sprout::array table_type; public: SPROUT_STATIC_CONSTEXPR table_type table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_INNER(SPROUT_UUID_TABLE_DEF) ; }; SPROUT_CONSTEXPR_OR_CONST sprout::uuids::detail::values::table_type sprout::uuids::detail::values::table SPROUT_STATIC_CONSTEXPR_DATA_MEMBER_OUTER(SPROUT_UUID_TABLE_DEF) ; # undef SPROUT_UUID_TABLE_DEF } // namespace detail } // namespace uuids } // namespace sprout #endif // #ifndef SPROUT_UUID_DETAIL_TABLE_HPP