]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/python/converter/arg_to_python_base.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / python / converter / arg_to_python_base.hpp
1 // Copyright David Abrahams 2002.
2 // Distributed under the Boost Software License, Version 1.0. (See
3 // accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 #ifndef ARG_TO_PYTHON_BASE_DWA200237_HPP
6 # define ARG_TO_PYTHON_BASE_DWA200237_HPP
7 # include <boost/python/handle.hpp>
8
9 namespace boost { namespace python { namespace converter {
10
11 struct registration;
12
13 namespace detail
14 {
15 struct BOOST_PYTHON_DECL arg_to_python_base
16 : handle<>
17 {
18 arg_to_python_base(void const volatile* source, registration const&);
19 };
20 }
21
22 }}} // namespace boost::python::converter
23
24 #endif // ARG_TO_PYTHON_BASE_DWA200237_HPP