1 // Boost uuid_serialize.hpp header file ----------------------------------------------// 2 3 // Copyright 2007 Andy Tompkins. 4 // Distributed under the Boost Software License, Version 1.0. (See 5 // accompanying file LICENSE_1_0.txt or copy at 6 // https://www.boost.org/LICENSE_1_0.txt) 7 8 // Revision History 9 // 12 Nov 2007 - Initial Revision 10 // 25 Feb 2008 - moved to namespace boost::uuids::detail 11 12 #ifndef BOOST_UUID_SERIALIZE_HPP 13 #define BOOST_UUID_SERIALIZE_HPP 14 15 #include <boost/uuid/uuid.hpp> 16 #include <boost/serialization/level.hpp> 17 18 BOOST_CLASS_IMPLEMENTATION(boost::uuids::uuid, boost::serialization::primitive_type) 19 20 #endif // BOOST_UUID_SERIALIZE_HPP 21