]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/python/test/crossmod_opaque_a.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / python / test / crossmod_opaque_a.cpp
CommitLineData
b32b8144 1// Copyright Gottfried Ganßauge 2006.
7c673cae
FG
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# include <boost/python/return_opaque_pointer.hpp>
6# include <boost/python/def.hpp>
7# include <boost/python/module.hpp>
8# include <boost/python/return_value_policy.hpp>
9
10typedef struct opaque_ *opaque;
11
12opaque the_op = ((opaque) 0x47110815);
13
14opaque get() { return the_op; }
15
16BOOST_PYTHON_OPAQUE_SPECIALIZED_TYPE_ID(opaque_)
17
18namespace bpl = boost::python;
19
20BOOST_PYTHON_MODULE(crossmod_opaque_a)
21{
22 bpl::def (
23 "get",
24 &::get,
25 bpl::return_value_policy<bpl::return_opaque_pointer>());
26}