12345678910111213141516171819202122232425262728293031 |
- #ifndef BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
- #define BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
- namespace boost { namespace mpi {
- template <class T> struct skeleton_proxy;
- template <class T> const skeleton_proxy<T> skeleton(T& x);
- class content;
- template <class T> const content get_content(const T& x);
- class packed_skeleton_iarchive;
- class packed_skeleton_oarchive;
- } }
- #endif
|