]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/interprocess/detail/cast_tags.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / interprocess / detail / cast_tags.hpp
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
11 #ifndef BOOST_INTERPROCESS_DETAIL_CAST_TAGS_HPP
12 #define BOOST_INTERPROCESS_DETAIL_CAST_TAGS_HPP
13
14 #ifndef BOOST_CONFIG_HPP
15 # include <boost/config.hpp>
16 #endif
17 #
18 #if defined(BOOST_HAS_PRAGMA_ONCE)
19 # pragma once
20 #endif
21
22 namespace boost { namespace interprocess { namespace ipcdetail {
23
24 struct static_cast_tag {};
25 struct const_cast_tag {};
26 struct dynamic_cast_tag {};
27 struct reinterpret_cast_tag {};
28
29 }}} //namespace boost { namespace interprocess { namespace ipcdetail {
30
31 #endif //#ifndef BOOST_INTERPROCESS_DETAIL_CAST_TAGS_HPP