/usr/include/boost/pending
NameSizeModeActions
detail/-0755rm
bucket_sorter.hpp47290644editdlrm
container_traits.hpp217230644editdlrm
disjoint_sets.hpp65150644editdlrm
fenced_priority_queue.hpp51880644editdlrm
fibonacci_heap.hpp77220644editdlrm
indirect_cmp.hpp25570644editdlrm
integer_log2.hpp2370644editdlrm
is_heap.hpp17550644editdlrm
iterator_adaptors.hpp2300644editdlrm
iterator_tests.hpp74210644editdlrm
mutable_heap.hpp19930644editdlrm
mutable_queue.hpp42340644editdlrm
property.hpp139360644editdlrm
property_serialize.hpp28980644editdlrm
queue.hpp31560644editdlrm
relaxed_heap.hpp206780644editdlrm
stringtok.hpp35010644editdlrm
Edit: /usr/include/boost/pending/property_serialize.hpp (2898B)
// (C) Copyright Jeremy Siek 2006 // Distributed under 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) #ifndef BOOST_PROPERTY_SERIALIZE_HPP #define BOOST_PROPERTY_SERIALIZE_HPP #include #include #include #include namespace boost { template < class Archive > inline void serialize(Archive&, no_property&, const unsigned int) { } template < class Archive, class Tag, class T, class Base > void serialize( Archive& ar, property< Tag, T, Base >& prop, const unsigned int /*version*/) { ar& serialization::make_nvp("property_value", prop.m_value); ar& serialization::make_nvp("property_base", prop.m_base); } #ifdef BOOST_GRAPH_USE_MPI // Setting the serialization properties of boost::property<> and // boost::no_property to is_bitwise_serializable, object_serializable, // track_never only when BOOST_GRAPH_USE_MPI is defined is dubious. // // This changes the serialization format of these classes, and hence // of boost::adjacency_list, depending on whether BOOST_GRAPH_USE_MPI // is defined. // // These serialization properties should probably be set in either case. // // Unfortunately, doing that now will change the serialization format // of boost::adjacency_list in the non-MPI case, and could potentially // break software that reads files serialized with an older release. namespace mpi { // forward declaration, to avoid including mpi template < typename T > struct is_mpi_datatype; template < typename Tag, typename T, typename Base > struct is_mpi_datatype< property< Tag, T, Base > > : mpl::and_< is_mpi_datatype< T >, is_mpi_datatype< Base > > { }; } namespace serialization { template < typename Tag, typename T, typename Base > struct is_bitwise_serializable< property< Tag, T, Base > > : mpl::and_< is_bitwise_serializable< T >, is_bitwise_serializable< Base > > { }; template < typename Tag, typename T, typename Base > struct implementation_level< property< Tag, T, Base > > : mpl::int_< object_serializable > { }; template < typename Tag, typename T, typename Base > struct tracking_level< property< Tag, T, Base > > : mpl::int_< track_never > { }; } #endif // BOOST_GRAPH_USE_MPI } // end namespace boost #ifdef BOOST_GRAPH_USE_MPI namespace boost { namespace mpi { template <> struct is_mpi_datatype< boost::no_property > : mpl::true_ { }; } } // end namespace boost::mpi BOOST_IS_BITWISE_SERIALIZABLE(boost::no_property) BOOST_CLASS_IMPLEMENTATION(boost::no_property, object_serializable) BOOST_CLASS_TRACKING(boost::no_property, track_never) #endif // BOOST_GRAPH_USE_MPI #endif // BOOST_PROPERTY_SERIALIZE_HPP