Server IP : 104.21.38.3 / Your IP : 172.71.124.91 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/pending/ |
Upload File : |
// (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 <boost/pending/property.hpp> #ifdef BOOST_GRAPH_USE_MPI #include <boost/mpi/datatype.hpp> #include <boost/serialization/is_bitwise_serializable.hpp> #endif // BOOST_GRAPH_USE_MPI #include <boost/serialization/base_object.hpp> #include <boost/serialization/nvp.hpp> 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 namespace mpi { 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