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 | |
11 | #ifndef BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP |
12 | #define BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP |
13 | |
14 | #include <boost/thread/csbl/memory/config.hpp> |
15 | |
16 | #include <boost/move/unique_ptr.hpp> |
17 | #include <boost/move/make_unique.hpp> |
18 | |
19 | namespace boost |
20 | { |
21 | namespace csbl |
22 | { |
23 | using ::boost::movelib::unique_ptr; |
24 | using ::boost::movelib::make_unique; |
25 | |
26 | } |
27 | } |
28 | #endif // header |
29 | |