1 #ifndef BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP
2 #define BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_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_iarchive.hpp:
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 // can't use this - much as I'd like to as borland doesn't support it
20 // #include <boost/scoped_ptr.hpp>
22 #include <boost/config.hpp>
23 #include <boost/archive/basic_archive.hpp>
24 #include <boost/serialization/tracking_enum.hpp>
26 #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
32 namespace serialization {
33 class extended_type_info;
34 } // namespace serialization
39 class basic_iarchive_impl;
40 class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_iserializer;
41 class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_pointer_iserializer;
42 //////////////////////////////////////////////////////////////////////
43 // class basic_iarchive - read serialized objects from a input stream
44 class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_iarchive
46 friend class basic_iarchive_impl;
47 // hide implementation of this class to minimize header conclusion
48 // in client code. I couldn't used scoped pointer with borland
49 // boost::scoped_ptr<basic_iarchive_impl> pimpl;
50 basic_iarchive_impl * pimpl;
52 virtual void vload(version_type &t) = 0;
53 virtual void vload(object_id_type &t) = 0;
54 virtual void vload(class_id_type &t) = 0;
55 virtual void vload(class_id_optional_type &t) = 0;
56 virtual void vload(class_name_type &t) = 0;
57 virtual void vload(tracking_type &t) = 0;
59 basic_iarchive(unsigned int flags);
60 // account for bogus gcc warning
66 // note: NOT part of the public API.
67 void next_object_pointer(void *t);
68 void register_basic_serializer(const basic_iserializer & bis);
71 const boost::serialization::extended_type_info * const eti,
72 shared_ptr<void> & sph
76 const boost::serialization::extended_type_info * const eti,
77 shared_ptr<void> & sph
81 const basic_iserializer & bis
83 const basic_pointer_iserializer *
86 const basic_pointer_iserializer * bpis_ptr,
87 const basic_pointer_iserializer * (*finder)(
88 const boost::serialization::extended_type_info & eti
91 // real public API starts here
93 set_library_version(unsigned int archive_library_version);
95 get_library_version() const;
99 reset_object_address(const void * new_address, const void * old_address);
101 delete_created_pointers();
104 } // namespace detail
105 } // namespace archive
108 // required by smart_cast for compilers not implementing
109 // partial template specialization
110 BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(
111 boost::archive::detail::basic_iarchive
114 #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
116 #endif //BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP