9 #ifndef ASIOEXT_CANCELLATIONTOKEN_HPP 10 #define ASIOEXT_CANCELLATIONTOKEN_HPP 12 #include "asioext/detail/config.hpp" 14 #if ASIOEXT_HAS_PRAGMA_ONCE 18 #include "asioext/detail/memory.hpp" 34 #if defined(ASIOEXT_HAS_MOVE) 66 ASIOEXT_DECL
void cancel();
77 ASIOEXT_DECL
void destroy() ASIOEXT_NOEXCEPT;
88 ASIOEXT_DECL
void reset();
91 #if !defined(ASIOEXT_HAS_MOVE) 98 detail::shared_ptr<void> ptr_;
122 ASIOEXT_DECL
bool cancelled()
const ASIOEXT_NOEXCEPT;
125 detail::weak_ptr<void> ptr_;
130 #if defined(ASIOEXT_HEADER_ONLY) 131 # include "asioext/impl/cancellation_token.cpp" Token to determine if an operation was cancelled.
Definition: cancellation_token.hpp:110
Manager for cancellation_tokens.
Definition: cancellation_token.hpp:26