Chris@16
|
1 #ifndef BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
|
Chris@16
|
2 #define BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
|
Chris@16
|
3
|
Chris@16
|
4 // MS compatible compilers support #pragma once
|
Chris@101
|
5 #if defined(_MSC_VER)
|
Chris@16
|
6 # pragma once
|
Chris@16
|
7 #endif
|
Chris@16
|
8
|
Chris@16
|
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
|
Chris@16
|
10 // basic_xml_archive.hpp:
|
Chris@16
|
11
|
Chris@16
|
12 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
|
Chris@16
|
13 // Use, modification and distribution is subject to the Boost Software
|
Chris@16
|
14 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
Chris@16
|
15 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
16
|
Chris@16
|
17 // See http://www.boost.org for updates, documentation, and revision history.
|
Chris@16
|
18
|
Chris@16
|
19 #include <boost/archive/archive_exception.hpp>
|
Chris@16
|
20
|
Chris@16
|
21 #include <boost/archive/detail/auto_link_archive.hpp>
|
Chris@16
|
22 #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
|
Chris@16
|
23
|
Chris@16
|
24 namespace boost {
|
Chris@16
|
25 namespace archive {
|
Chris@16
|
26
|
Chris@16
|
27 // constant strings used in xml i/o
|
Chris@16
|
28
|
Chris@16
|
29 extern
|
Chris@16
|
30 BOOST_ARCHIVE_DECL(const char *)
|
Chris@16
|
31 BOOST_ARCHIVE_XML_OBJECT_ID();
|
Chris@16
|
32
|
Chris@16
|
33 extern
|
Chris@16
|
34 BOOST_ARCHIVE_DECL(const char *)
|
Chris@16
|
35 BOOST_ARCHIVE_XML_OBJECT_REFERENCE();
|
Chris@16
|
36
|
Chris@16
|
37 extern
|
Chris@16
|
38 BOOST_ARCHIVE_DECL(const char *)
|
Chris@16
|
39 BOOST_ARCHIVE_XML_CLASS_ID();
|
Chris@16
|
40
|
Chris@16
|
41 extern
|
Chris@16
|
42 BOOST_ARCHIVE_DECL(const char *)
|
Chris@16
|
43 BOOST_ARCHIVE_XML_CLASS_ID_REFERENCE();
|
Chris@16
|
44
|
Chris@16
|
45 extern
|
Chris@16
|
46 BOOST_ARCHIVE_DECL(const char *)
|
Chris@16
|
47 BOOST_ARCHIVE_XML_CLASS_NAME();
|
Chris@16
|
48
|
Chris@16
|
49 extern
|
Chris@16
|
50 BOOST_ARCHIVE_DECL(const char *)
|
Chris@16
|
51 BOOST_ARCHIVE_XML_TRACKING();
|
Chris@16
|
52
|
Chris@16
|
53 extern
|
Chris@16
|
54 BOOST_ARCHIVE_DECL(const char *)
|
Chris@16
|
55 BOOST_ARCHIVE_XML_VERSION();
|
Chris@16
|
56
|
Chris@16
|
57 extern
|
Chris@16
|
58 BOOST_ARCHIVE_DECL(const char *)
|
Chris@16
|
59 BOOST_ARCHIVE_XML_SIGNATURE();
|
Chris@16
|
60
|
Chris@16
|
61 }// namespace archive
|
Chris@16
|
62 }// namespace boost
|
Chris@16
|
63
|
Chris@16
|
64 #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
|
Chris@16
|
65
|
Chris@16
|
66 #endif // BOOST_ARCHIVE_BASIC_XML_TEXT_ARCHIVE_HPP
|
Chris@16
|
67
|