basic_xml_archive.hpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
  2. #define BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER)
  5. # pragma once
  6. #endif
  7. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  8. // basic_xml_archive.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. #include <boost/archive/archive_exception.hpp>
  15. #include <boost/archive/detail/auto_link_archive.hpp>
  16. #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
  17. namespace boost {
  18. namespace archive {
  19. // constant strings used in xml i/o
  20. extern
  21. BOOST_ARCHIVE_DECL const char *
  22. BOOST_ARCHIVE_XML_OBJECT_ID();
  23. extern
  24. BOOST_ARCHIVE_DECL const char *
  25. BOOST_ARCHIVE_XML_OBJECT_REFERENCE();
  26. extern
  27. BOOST_ARCHIVE_DECL const char *
  28. BOOST_ARCHIVE_XML_CLASS_ID();
  29. extern
  30. BOOST_ARCHIVE_DECL const char *
  31. BOOST_ARCHIVE_XML_CLASS_ID_REFERENCE();
  32. extern
  33. BOOST_ARCHIVE_DECL const char *
  34. BOOST_ARCHIVE_XML_CLASS_NAME();
  35. extern
  36. BOOST_ARCHIVE_DECL const char *
  37. BOOST_ARCHIVE_XML_TRACKING();
  38. extern
  39. BOOST_ARCHIVE_DECL const char *
  40. BOOST_ARCHIVE_XML_VERSION();
  41. extern
  42. BOOST_ARCHIVE_DECL const char *
  43. BOOST_ARCHIVE_XML_SIGNATURE();
  44. }// namespace archive
  45. }// namespace boost
  46. #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
  47. #endif // BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP