• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2 // xml_wiarchive.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 #if (defined _MSC_VER) && (_MSC_VER == 1200)
12 #  pragma warning (disable : 4786) // too long name, harmless warning
13 #endif
14 
15 #include <boost/config.hpp>
16 #ifdef BOOST_NO_STD_WSTREAMBUF
17 #error "wide char i/o not supported on this platform"
18 #else
19 
20 #define BOOST_WARCHIVE_SOURCE
21 #include <boost/serialization/config.hpp>
22 #include <boost/archive/xml_wiarchive.hpp>
23 #include <boost/archive/detail/archive_serializer_map.hpp>
24 
25 // explicitly instantiate for this type of xml stream
26 #include <boost/archive/impl/archive_serializer_map.ipp>
27 #include <boost/archive/impl/basic_xml_iarchive.ipp>
28 #include <boost/archive/impl/xml_wiarchive_impl.ipp>
29 
30 namespace boost {
31 namespace archive {
32 
33 template class detail::archive_serializer_map<xml_wiarchive>;
34 template class basic_xml_iarchive<xml_wiarchive> ;
35 template class xml_wiarchive_impl<xml_wiarchive> ;
36 
37 } // namespace archive
38 } // namespace boost
39 
40 #endif // BOOST_NO_STD_WSTREAMBUF
41