skeleton_and_content_fwd.hpp 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. // (C) Copyright 2006 Douglas Gregor <doug.gregor -at gmail.com>
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // Authors: Douglas Gregor
  6. /** @file skeleton_and_content_fwd.hpp
  7. *
  8. * This header contains all of the forward declarations required to
  9. * use transmit skeletons of data structures and the content of data
  10. * structures separately. To actually transmit skeletons or content,
  11. * include the header @c boost/mpi/skeleton_and_content.hpp.
  12. */
  13. #ifndef BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
  14. #define BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
  15. namespace boost { namespace mpi {
  16. template <class T> struct skeleton_proxy;
  17. template <class T> const skeleton_proxy<T> skeleton(T& x);
  18. class content;
  19. template <class T> const content get_content(const T& x);
  20. class packed_skeleton_iarchive;
  21. class packed_skeleton_oarchive;
  22. } } // end namespace boost::mpi
  23. #endif // BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP