Brian Silverman | 8867871 | 2018-08-04 23:56:48 -0700 | [diff] [blame^] | 1 | /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 |
| 2 | // basic_text_wiprimitive.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 | #include <istream> |
| 12 | |
| 13 | #include <boost/config.hpp> |
| 14 | |
| 15 | #ifdef BOOST_NO_STD_WSTREAMBUF |
| 16 | #error "wide char i/o not supported on this platform" |
| 17 | #else |
| 18 | |
| 19 | #if (defined _MSC_VER) && (_MSC_VER == 1200) |
| 20 | # pragma warning (disable : 4786) // too long name, harmless warning |
| 21 | #endif |
| 22 | |
| 23 | #define BOOST_WARCHIVE_SOURCE |
| 24 | #include <boost/serialization/config.hpp> |
| 25 | #include <boost/archive/detail/auto_link_warchive.hpp> |
| 26 | #include <boost/archive/impl/basic_text_iprimitive.ipp> |
| 27 | |
| 28 | namespace boost { |
| 29 | namespace archive { |
| 30 | |
| 31 | template class basic_text_iprimitive<std::wistream> ; |
| 32 | |
| 33 | } // namespace archive |
| 34 | } // namespace boost |
| 35 | |
| 36 | #endif // BOOST_NO_STD_WSTREAMBUF |