Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 #ifndef BOOST_SERIALIZATION_BASIC_OSERIALIZER_HPP
2 #define BOOST_SERIALIZATION_BASIC_OSERIALIZER_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_oserializer.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.
19 #include <cstdlib> // NULL
20 #include <boost/config.hpp>
22 #include <boost/archive/detail/auto_link_archive.hpp>
23 #include <boost/archive/detail/basic_serializer.hpp>
25 #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
29 namespace serialization {
30 class extended_type_info;
31 } // namespace serialization
33 // forward declarations
37 class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_oarchive;
38 class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_pointer_oserializer;
40 class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_oserializer :
41 public basic_serializer
44 basic_pointer_oserializer *bpos;
46 explicit basic_oserializer(
47 const boost::serialization::extended_type_info & type_
49 // account for bogus gcc warning
55 bool serialized_as_pointer() const {
58 void set_bpos(basic_pointer_oserializer *bpos_){
61 const basic_pointer_oserializer * get_bpos() const {
64 virtual void save_object_data(
65 basic_oarchive & ar, const void * x
67 // returns true if class_info should be saved
68 virtual bool class_info() const = 0;
69 // returns true if objects should be tracked
70 virtual bool tracking(const unsigned int flags) const = 0;
71 // returns class version
72 virtual unsigned int version() const = 0;
73 // returns true if this class is polymorphic
74 virtual bool is_polymorphic() const = 0;
78 } // namespace serialization
81 #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
83 #endif // BOOST_SERIALIZATION_BASIC_OSERIALIZER_HPP