diff options
| author | bugaevskiy <[email protected]> | 2022-09-05 10:49:34 +0300 |
|---|---|---|
| committer | bugaevskiy <[email protected]> | 2022-09-05 10:49:34 +0300 |
| commit | 79314458e846822ab76c0d57212b29388c685ca3 (patch) | |
| tree | 9ba53f0c5cdecc64392db7035004c1ad49fd0c07 /contrib/restricted/boost/serialization/src/text_oarchive.cpp | |
| parent | 286a310be3ab04813480a1bd291d618a7bf47d90 (diff) | |
Reimport boost/serialization as a separate project
Diffstat (limited to 'contrib/restricted/boost/serialization/src/text_oarchive.cpp')
| -rw-r--r-- | contrib/restricted/boost/serialization/src/text_oarchive.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/contrib/restricted/boost/serialization/src/text_oarchive.cpp b/contrib/restricted/boost/serialization/src/text_oarchive.cpp new file mode 100644 index 00000000000..ae24a0bf748 --- /dev/null +++ b/contrib/restricted/boost/serialization/src/text_oarchive.cpp @@ -0,0 +1,34 @@ +/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 +// text_oarchive.cpp: + +// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . +// Use, modification and distribution is subject to the Boost Software +// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +// See http://www.boost.org for updates, documentation, and revision history. + +#if (defined _MSC_VER) && (_MSC_VER == 1200) +# pragma warning (disable : 4786) // too long name, harmless warning +#endif + +#define BOOST_ARCHIVE_SOURCE +#include <boost/serialization/config.hpp> +#include <boost/archive/text_oarchive.hpp> +#include <boost/archive/detail/archive_serializer_map.hpp> + +// explicitly instantiate for this type of text stream +#include <boost/archive/impl/archive_serializer_map.ipp> +#include <boost/archive/impl/basic_text_oarchive.ipp> +#include <boost/archive/impl/text_oarchive_impl.ipp> + +namespace boost { +namespace archive { + +//template class basic_text_oprimitive<std::ostream> ; +template class detail::archive_serializer_map<text_oarchive>; +template class basic_text_oarchive<text_oarchive> ; +template class text_oarchive_impl<text_oarchive> ; + +} // namespace serialization +} // namespace boost |
