Warning, file /include/boost/mpi/detail/ignore_iprimitive.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_MPI_DETAIL_IGNORE_IPRIMITIVE_HPP
0010 #define BOOST_MPI_DETAIL_IGNORE_IPRIMITIVE_HPP
0011
0012 #include <boost/config.hpp>
0013 #include <boost/mpi/datatype.hpp>
0014 #include <boost/serialization/array.hpp>
0015
0016
0017 namespace boost { namespace mpi { namespace detail {
0018
0019
0020
0021
0022
0023
0024
0025
0026 class ignore_iprimitive
0027 {
0028 public:
0029
0030 ignore_iprimitive()
0031 {}
0032
0033
0034
0035 void load_binary(void *, std::size_t )
0036 {}
0037
0038
0039 template<class T>
0040 void load_array(serialization::array_wrapper<T> &, unsigned int )
0041 {}
0042
0043 typedef is_mpi_datatype<mpl::_1> use_array_optimization;
0044
0045
0046 template<class T>
0047 void load(T &)
0048 {
0049 }
0050 };
0051
0052 } } }
0053
0054 #endif