1/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2// basic_xml_archive.cpp:
3
4// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
5// Use, modification and distribution is subject to the Boost Software
6// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8
9// See http://www.boost.org for updates, documentation, and revision history.
10
11#define BOOST_ARCHIVE_SOURCE
12#include <boost/serialization/config.hpp>
13#include <boost/archive/basic_xml_archive.hpp>
14
15namespace boost {
16namespace archive {
17
18BOOST_SYMBOL_VISIBLE const char *
19BOOST_ARCHIVE_XML_OBJECT_ID(){
20 return "object_id";
21}
22BOOST_SYMBOL_VISIBLE const char *
23BOOST_ARCHIVE_XML_OBJECT_REFERENCE(){
24 return "object_id_reference";
25}
26BOOST_SYMBOL_VISIBLE const char *
27BOOST_ARCHIVE_XML_CLASS_ID(){
28 return "class_id";
29}
30BOOST_SYMBOL_VISIBLE const char *
31BOOST_ARCHIVE_XML_CLASS_ID_REFERENCE(){
32 return "class_id_reference";
33}
34BOOST_SYMBOL_VISIBLE const char *
35BOOST_ARCHIVE_XML_CLASS_NAME(){
36 return "class_name";
37}
38BOOST_SYMBOL_VISIBLE const char *
39BOOST_ARCHIVE_XML_TRACKING(){
40 return "tracking_level";
41}
42BOOST_SYMBOL_VISIBLE const char *
43BOOST_ARCHIVE_XML_VERSION(){
44 return "version";
45}
46BOOST_SYMBOL_VISIBLE const char *
47BOOST_ARCHIVE_XML_SIGNATURE(){
48 return "signature";
49}
50
51}// namespace archive
52}// namespace boost
53

source code of boost/libs/serialization/src/basic_xml_archive.cpp