⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 archive_pointer_iserializer.ipp

📁 CGAL is a collaborative effort of several sites in Europe and Israel. The goal is to make the most i
💻 IPP
字号:
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8// pointer_iserializer.ipp: // (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.#include <boost/config.hpp> // msvc 6.0 needs this for warning suppression#include <boost/archive/detail/basic_serializer_map.hpp>#include <boost/archive/detail/archive_pointer_iserializer.hpp>namespace boost { namespace archive {namespace detail {template<class Archive>basic_serializer_map & iserializer_map(){    static basic_serializer_map map;    return map;}template<class Archive>archive_pointer_iserializer<Archive>::archive_pointer_iserializer(    const boost::serialization::extended_type_info & type) :    basic_pointer_iserializer(type){    iserializer_map<Archive>().insert(this);}template<class Archive>const basic_pointer_iserializer * archive_pointer_iserializer<Archive>::find(    const boost::serialization::extended_type_info & type){    return static_cast<const basic_pointer_iserializer *>(        iserializer_map<Archive>().tfind(type)    );}} // namespace detail} // namespace archive} // namespace boost

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -