]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/serialization/include/boost/archive/basic_xml_archive.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / serialization / include / boost / archive / basic_xml_archive.hpp
CommitLineData
7c673cae
FG
1#ifndef BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
2#define BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_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_xml_archive.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#include <boost/archive/archive_exception.hpp>
20
21#include <boost/archive/detail/auto_link_archive.hpp>
22#include <boost/archive/detail/abi_prefix.hpp> // must be the last header
23
24namespace boost {
25namespace archive {
26
27// constant strings used in xml i/o
28
29extern
30BOOST_ARCHIVE_DECL const char *
31BOOST_ARCHIVE_XML_OBJECT_ID();
32
33extern
34BOOST_ARCHIVE_DECL const char *
35BOOST_ARCHIVE_XML_OBJECT_REFERENCE();
36
37extern
38BOOST_ARCHIVE_DECL const char *
39BOOST_ARCHIVE_XML_CLASS_ID();
40
41extern
42BOOST_ARCHIVE_DECL const char *
43BOOST_ARCHIVE_XML_CLASS_ID_REFERENCE();
44
45extern
46BOOST_ARCHIVE_DECL const char *
47BOOST_ARCHIVE_XML_CLASS_NAME();
48
49extern
50BOOST_ARCHIVE_DECL const char *
51BOOST_ARCHIVE_XML_TRACKING();
52
53extern
54BOOST_ARCHIVE_DECL const char *
55BOOST_ARCHIVE_XML_VERSION();
56
57extern
58BOOST_ARCHIVE_DECL const char *
59BOOST_ARCHIVE_XML_SIGNATURE();
60
61}// namespace archive
62}// namespace boost
63
64#include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
65
66#endif // BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
67