1 #ifndef BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP
2 #define BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP
3 
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER)
6 # pragma once
7 #endif
8 
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // basic_iarchive.hpp:
11 
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)
16 
17 //  See http://www.boost.org for updates, documentation, and revision history.
18 
19 // can't use this - much as I'd like to as borland doesn't support it
20 
21 #include <boost/config.hpp>
22 #include <boost/noncopyable.hpp>
23 #include <boost/scoped_ptr.hpp>
24 
25 #include <boost/serialization/tracking_enum.hpp>
26 #include <boost/archive/basic_archive.hpp>
27 #include <boost/archive/detail/decl.hpp>
28 #include <boost/archive/detail/helper_collection.hpp>
29 #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
30 
31 namespace boost {
32 namespace serialization {
33     class extended_type_info;
34 } // namespace serialization
35 
36 namespace archive {
37 namespace detail {
38 
39 class basic_iarchive_impl;
40 class basic_iserializer;
41 class basic_pointer_iserializer;
42 
43 //////////////////////////////////////////////////////////////////////
44 // class basic_iarchive - read serialized objects from a input stream
45 class BOOST_SYMBOL_VISIBLE basic_iarchive :
46     private boost::noncopyable,
47     public boost::archive::detail::helper_collection
48 {
49     friend class basic_iarchive_impl;
50     // hide implementation of this class to minimize header conclusion
51     boost::scoped_ptr<basic_iarchive_impl> pimpl;
52 
53     virtual void vload(version_type &t) =  0;
54     virtual void vload(object_id_type &t) =  0;
55     virtual void vload(class_id_type &t) =  0;
56     virtual void vload(class_id_optional_type &t) = 0;
57     virtual void vload(class_name_type &t) = 0;
58     virtual void vload(tracking_type &t) = 0;
59 protected:
60     BOOST_ARCHIVE_DECL basic_iarchive(unsigned int flags);
61     boost::archive::detail::helper_collection &
get_helper_collection()62     get_helper_collection(){
63         return *this;
64     }
65 public:
66     // some msvc versions require that the following function be public
67     // otherwise it should really protected.
68     // account for bogus gcc warning
69     #if defined(__GNUC__)
70     virtual
71     #endif
72     BOOST_ARCHIVE_DECL ~basic_iarchive();
73     // note: NOT part of the public API.
74     BOOST_ARCHIVE_DECL void next_object_pointer(void *t);
75     BOOST_ARCHIVE_DECL void register_basic_serializer(
76         const basic_iserializer & bis
77     );
78     BOOST_ARCHIVE_DECL void load_object(
79         void *t,
80         const basic_iserializer & bis
81     );
82     BOOST_ARCHIVE_DECL const basic_pointer_iserializer *
83     load_pointer(
84         void * & t,
85         const basic_pointer_iserializer * bpis_ptr,
86         const basic_pointer_iserializer * (*finder)(
87             const boost::serialization::extended_type_info & eti
88         )
89     );
90     // real public API starts here
91     BOOST_ARCHIVE_DECL void
92     set_library_version(library_version_type archive_library_version);
93     BOOST_ARCHIVE_DECL library_version_type
94     get_library_version() const;
95     BOOST_ARCHIVE_DECL unsigned int
96     get_flags() const;
97     BOOST_ARCHIVE_DECL void
98     reset_object_address(const void * new_address, const void * old_address);
99     BOOST_ARCHIVE_DECL void
100     delete_created_pointers();
101 };
102 
103 } // namespace detail
104 } // namespace archive
105 } // namespace boost
106 
107 #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
108 
109 #endif //BOOST_ARCHIVE_DETAIL_BASIC_IARCHIVE_HPP
110