unique_ptr.hpp 722 B

12345678910111213141516171819202122232425262728
  1. // Copyright (C) 2013-2014 Vicente J. Botet Escriba
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. //
  6. // 2013/10 Vicente J. Botet Escriba
  7. // Creation using interprocess::unique_ptr.
  8. // 2014/09 Vicente J. Botet Escriba
  9. // Adaptation to movelib::unique_ptr
  10. #ifndef BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP
  11. #define BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP
  12. #include <boost/thread/csbl/memory/config.hpp>
  13. #include <boost/move/unique_ptr.hpp>
  14. #include <boost/move/make_unique.hpp>
  15. namespace boost
  16. {
  17. namespace csbl
  18. {
  19. using ::boost::movelib::unique_ptr;
  20. using ::boost::movelib::make_unique;
  21. }
  22. }
  23. #endif // header