cast_tags.hpp 959 B

12345678910111213141516171819202122232425262728293031
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2005-2012. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/interprocess for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_INTERPROCESS_DETAIL_CAST_TAGS_HPP
  11. #define BOOST_INTERPROCESS_DETAIL_CAST_TAGS_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #
  16. #if defined(BOOST_HAS_PRAGMA_ONCE)
  17. # pragma once
  18. #endif
  19. namespace boost { namespace interprocess { namespace ipcdetail {
  20. struct static_cast_tag {};
  21. struct const_cast_tag {};
  22. struct dynamic_cast_tag {};
  23. struct reinterpret_cast_tag {};
  24. }}} //namespace boost { namespace interprocess { namespace ipcdetail {
  25. #endif //#ifndef BOOST_INTERPROCESS_DETAIL_CAST_TAGS_HPP