File indexing completed on 2025-01-19 09:46:10
0001
0002
0003
0004
0005 #ifndef RETURN_VALUE_POLICY_DWA2002131_HPP
0006 # define RETURN_VALUE_POLICY_DWA2002131_HPP
0007
0008 # include <boost/python/detail/prefix.hpp>
0009 # include <boost/python/default_call_policies.hpp>
0010
0011 namespace boost { namespace python {
0012
0013 template <class ResultConverterGenerator, class BasePolicy_ = default_call_policies>
0014 struct return_value_policy : BasePolicy_
0015 {
0016 typedef ResultConverterGenerator result_converter;
0017 };
0018
0019 }}
0020
0021 #endif