Project revived from Feb2017
[EroSomnia.git] / deps / boost_1_63_0 / boost / asio / detail / null_fenced_block.hpp
blob237874fc12f0c6f09943ac5c06f914d0ead1c4eb
1 //
2 // detail/null_fenced_block.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
11 #ifndef BOOST_ASIO_DETAIL_NULL_FENCED_BLOCK_HPP
12 #define BOOST_ASIO_DETAIL_NULL_FENCED_BLOCK_HPP
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
15 # pragma once
16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
18 #include <boost/asio/detail/push_options.hpp>
20 namespace boost {
21 namespace asio {
22 namespace detail {
24 class null_fenced_block
25 : private noncopyable
27 public:
28 enum half_or_full_t { half, full };
30 // Constructor.
31 explicit null_fenced_block(half_or_full_t)
35 // Destructor.
36 ~null_fenced_block()
41 } // namespace detail
42 } // namespace asio
43 } // namespace boost
45 #include <boost/asio/detail/pop_options.hpp>
47 #endif // BOOST_ASIO_DETAIL_NULL_FENCED_BLOCK_HPP