unique_ptr.hpp 669 B

1234567891011121314151617181920212223242526
  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/smart_ptr/make_unique.hpp>
  14. namespace boost
  15. {
  16. namespace csbl
  17. {
  18. using ::std::unique_ptr;
  19. using ::boost::make_unique;
  20. }
  21. }
  22. #endif // header