atomic_ref.hpp 668 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * Copyright (c) 2020 Andrey Semashev
  7. */
  8. /*!
  9. * \file atomic/atomic_ref.hpp
  10. *
  11. * This header contains definition of \c atomic_ref template.
  12. */
  13. #ifndef BOOST_ATOMIC_ATOMIC_REF_HPP_INCLUDED_
  14. #define BOOST_ATOMIC_ATOMIC_REF_HPP_INCLUDED_
  15. #include <boost/atomic/capabilities.hpp>
  16. #include <boost/atomic/detail/atomic_ref_template.hpp>
  17. #ifdef BOOST_HAS_PRAGMA_ONCE
  18. #pragma once
  19. #endif
  20. namespace boost {
  21. using atomics::atomic_ref;
  22. } // namespace boost
  23. #endif // BOOST_ATOMIC_ATOMIC_REF_HPP_INCLUDED_