1 #ifndef BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP
2 #define BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP
3 
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
6 # pragma once
7 #endif
8 
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // basic_archive_impl.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 // #include <boost/scoped_ptr.hpp>
21 
22 #include <set>
23 
24 #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
25 
26 namespace boost {
27 namespace serialization {
28     class extended_type_info;
29 } // namespace serialization
30 
31 namespace archive {
32 namespace detail {
33 
34 //////////////////////////////////////////////////////////////////////
BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY ())35 class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_archive_impl
36 {
37 };
38 
39 } // namespace detail
40 } // namespace serialization
41 } // namespace boost
42 
43 #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
44 
45 #endif //BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP
46 
47 
48 
49