]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/python/test/boost_shared_ptr.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / python / test / boost_shared_ptr.cpp
1 // Copyright David Abrahams 2002.
2 // Copyright Stefan Seefeld 2016.
3 // Distributed under the Boost Software License, Version 1.0. (See
4 // accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6
7 #include <boost/python/module.hpp>
8 #include <boost/python/class.hpp>
9 #include <boost/python/call_method.hpp>
10 #include <boost/python/extract.hpp>
11 #include <boost/python/def.hpp>
12 #include <boost/shared_ptr.hpp>
13 #include <memory>
14
15 using boost::shared_ptr;
16 #define MODULE boost_shared_ptr_ext
17
18 #include "shared_ptr.hpp"
19 #include "module_tail.cpp"
20