12345678910111213141516171819202122232425262728293031 |
- #ifndef BOOST_UUID_SERIALIZE_HPP
- #define BOOST_UUID_SERIALIZE_HPP
- #include <boost/uuid/uuid.hpp>
- #include <boost/type_traits/integral_constant.hpp>
- namespace boost
- {
- namespace serialization
- {
- template<class T> struct implementation_level_impl;
- template<> struct implementation_level_impl<const uuids::uuid>: boost::integral_constant<int, 1> {};
- }
- }
- #endif
|