basic_archive_impl.hpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP
  2. #define BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  5. # pragma once
  6. #endif
  7. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  8. // basic_archive_impl.hpp:
  9. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  10. // Use, modification and distribution is subject to the Boost Software
  11. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  12. // http://www.boost.org/LICENSE_1_0.txt)
  13. // See http://www.boost.org for updates, documentation, and revision history.
  14. // can't use this - much as I'd like to as borland doesn't support it
  15. // #include <boost/scoped_ptr.hpp>
  16. #include <set>
  17. #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
  18. namespace boost {
  19. namespace serialization {
  20. class extended_type_info;
  21. } // namespace serialization
  22. namespace archive {
  23. namespace detail {
  24. //////////////////////////////////////////////////////////////////////
  25. class BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_archive_impl
  26. {
  27. };
  28. } // namespace detail
  29. } // namespace serialization
  30. } // namespace boost
  31. #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
  32. #endif //BOOST_ARCHIVE_DETAIL_BASIC_ARCHIVE_IMPL_HPP