2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-01 20:52:13 +00:00

MSVC6 and 7 compatibility fixes

[SVN r20779]
This commit is contained in:
Raoul Gough
2003-11-10 18:06:41 +00:00
parent 997467c29f
commit 91db6f2d50
34 changed files with 773 additions and 284 deletions

View File

@@ -54,24 +54,28 @@ BOOST_PYTHON_MODULE(test_deque_ext)
;
typedef std::deque<int> Container1;
boost::python::class_<Container1>("Deque")
.def (indexing::container_suite<Container1>())
;
typedef std::deque<int_wrapper> Container2;
typedef indexing::container_proxy<
Container2, indexing::identity<Container2>, deque_generator> Container3;
#if !defined (BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
typedef indexing::container_suite<Container1> Suite1;
typedef indexing::container_suite<Container2> Suite2;
typedef indexing::container_suite<Container3> Suite3;
#else
typedef indexing::deque_suite<Container1> Suite1;
typedef indexing::deque_suite<Container2> Suite2;
typedef indexing::container_proxy_suite<Container3> Suite3;
#endif
boost::python::class_<Container1>("Deque").def (Suite1());
// Returning internal references to elements of a deque is
// dangerous - the references can be invalidated by inserts or
// deletes!
boost::python::class_<Container2>("Deque_ref")
.def (indexing::container_suite<Container2>
.def (Suite2
::with_policies (boost::python::return_internal_reference<>()));
typedef indexing::container_proxy<
Container2, indexing::identity<Container2>, deque_generator> Container3;
boost::python::class_<Container3>("Deque_proxy")
.def (indexing::container_suite<Container3>())
;
boost::python::class_<Container3>("Deque_proxy").def (Suite3());
}