Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef ASIO_DETAIL_NONCOPYABLE_HPP
00012 #define ASIO_DETAIL_NONCOPYABLE_HPP
00013
00014 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
00015 # pragma once
00016 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
00017
00018 #include "asio/detail/push_options.hpp"
00019
00020 #include "asio/detail/push_options.hpp"
00021 #include <boost/config.hpp>
00022 #include <boost/noncopyable.hpp>
00023 #include <boost/detail/workaround.hpp>
00024 #include "asio/detail/pop_options.hpp"
00025
00026 namespace asio {
00027 namespace detail {
00028
00029 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
00030
00031
00032
00033 class noncopyable
00034 {
00035 protected:
00036 noncopyable() {}
00037 ~noncopyable() {}
00038 private:
00039 noncopyable(const noncopyable&);
00040 const noncopyable& operator=(const noncopyable&);
00041 char dummy_;
00042 };
00043 #else
00044 using boost::noncopyable;
00045 #endif
00046
00047 }
00048
00049 using asio::detail::noncopyable;
00050
00051 }
00052
00053 #include "asio/detail/pop_options.hpp"
00054
00055 #endif // ASIO_DETAIL_NONCOPYABLE_HPP