12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #ifndef BOOST_ASIO_USE_FUTURE_HPP
- #define BOOST_ASIO_USE_FUTURE_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include <boost/asio/detail/config.hpp>
- #include <memory>
- #include <boost/asio/detail/push_options.hpp>
- namespace boost {
- namespace asio {
- template <typename Allocator = std::allocator<void> >
- class use_future_t
- {
- public:
-
-
- typedef Allocator allocator_type;
-
- BOOST_ASIO_CONSTEXPR use_future_t()
- {
- }
-
- explicit use_future_t(const Allocator& allocator)
- : allocator_(allocator)
- {
- }
-
- template <typename OtherAllocator>
- use_future_t<OtherAllocator> operator[](const OtherAllocator& allocator) const
- {
- return use_future_t<OtherAllocator>(allocator);
- }
-
- allocator_type get_allocator() const
- {
- return allocator_;
- }
- private:
- Allocator allocator_;
- };
- #if defined(BOOST_ASIO_HAS_CONSTEXPR) || defined(GENERATING_DOCUMENTATION)
- constexpr use_future_t<> use_future;
- #elif defined(BOOST_ASIO_MSVC)
- __declspec(selectany) use_future_t<> use_future;
- #endif
- }
- }
- #include <boost/asio/detail/pop_options.hpp>
- #include <boost/asio/impl/use_future.hpp>
- #endif
|