Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 #ifndef BOOST_ARCHIVE_BASIC_SERIALIZER_HPP
2 #define BOOST_ARCHIVE_BASIC_SERIALIZER_HPP
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // basic_serializer.hpp: extenstion of type_info required for serialization.
12 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
13 // Use, modification and distribution is subject to the Boost Software
14 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15 // http://www.boost.org/LICENSE_1_0.txt)
17 // See http://www.boost.org for updates, documentation, and revision history.
21 #include <boost/noncopyable.hpp>
22 #include <boost/config.hpp>
23 #include <boost/serialization/extended_type_info.hpp>
29 class basic_serializer : private boost::noncopyable
31 const boost::serialization::extended_type_info & m_eti;
33 explicit basic_serializer(
34 const boost::serialization::extended_type_info & eti
39 const boost::serialization::extended_type_info & get_eti() const {
42 bool operator<(const basic_serializer & rhs) const {
43 return & m_eti < & rhs.get_eti();
48 } // namespace archive
51 #endif // BOOST_ARCHIVE_BASIC_SERIALIZER_HPP