1 | #ifndef BOOST_ARCHIVE_POLYMORPHIC_TEXT_WOARCHIVE_HPP
|
---|
2 | #define BOOST_ARCHIVE_POLYMORPHIC_TEXT_WOARCHIVE_HPP
|
---|
3 |
|
---|
4 | // MS compatible compilers support #pragma once
|
---|
5 | #if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
---|
6 | # pragma once
|
---|
7 | #endif
|
---|
8 |
|
---|
9 | /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
|
---|
10 | // polymorphic_text_oarchive.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/config.hpp>
|
---|
20 | #ifdef BOOST_NO_STD_WSTREAMBUF
|
---|
21 | #error "wide char i/o not supported on this platform"
|
---|
22 | #else
|
---|
23 |
|
---|
24 | #include <boost/archive/text_woarchive.hpp>
|
---|
25 | #include <boost/archive/detail/polymorphic_oarchive_impl.hpp>
|
---|
26 |
|
---|
27 | namespace boost {
|
---|
28 | namespace archive {
|
---|
29 |
|
---|
30 | typedef detail::polymorphic_oarchive_impl<
|
---|
31 | text_woarchive_impl<text_woarchive>
|
---|
32 | > polymorphic_text_woarchive;
|
---|
33 |
|
---|
34 | } // namespace archive
|
---|
35 | } // namespace boost
|
---|
36 |
|
---|
37 | // required by smart_cast for compilers not implementing
|
---|
38 | // partial template specialization
|
---|
39 | BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(
|
---|
40 | boost::archive::polymorphic_text_woarchive
|
---|
41 | )
|
---|
42 |
|
---|
43 | #endif // BOOST_NO_STD_WSTREAMBUF
|
---|
44 | #endif // BOOST_ARCHIVE_POLYMORPHIC_TEXT_WOARCHIVE_HPP
|
---|
45 |
|
---|