// -*- mode:c++ -*- // // Module testlinear.cpp // // Copyright (c) 2003 Raoul M. Gough // // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy // at http://www.boost.org/LICENSE_1_0.txt) // // History // ======= // 2003/ 9/ 8 rmg File creation as testsuite.cpp // 2003/ 9/29 rmg Renamed testlinear.cpp to allow division into parts // // $Id$ // #include "int_wrapper.hpp" #include #include #include #include #include #include #include #include #include #include #include // More messiness from not having a separate int_wrapper.cpp file bool int_wrapper::our_trace_flag = true; unsigned int_wrapper::our_object_counter = 0; boost::python::indexing::iterator_pair getArray() { static int_wrapper array[] = { int_wrapper(8), int_wrapper(6), int_wrapper(4), int_wrapper(2) , int_wrapper(1), int_wrapper(3), int_wrapper(5) , int_wrapper(7), int_wrapper(0) }; return boost::python::indexing::iterator_pair (boost::python::indexing::begin(array) , boost::python::indexing::end(array)); } std::string repr (int_wrapper const &i) { std::stringstream temp; temp << i; return temp.str(); } BOOST_PYTHON_MODULE(testlinear) { boost::python::implicitly_convertible (); boost::python::def ("setTrace", &int_wrapper::setTrace); boost::python::class_ ("int_wrapper", boost::python::init()) .def ("increment", &int_wrapper::increment) .def ("__repr__", repr) .def ("__cmp__", compare) ; typedef std::vector Container1; boost::python::class_("Vector") .def (boost::python::indexing::container_suite()) .def ("reserve", &Container1::reserve) ; typedef std::list Container2; boost::python::class_("List") .def (boost::python::indexing::container_suite()); typedef boost::python::indexing::iterator_pair Container3; boost::python::class_ ("Array", boost::python::init()) .def (boost::python::indexing::container_suite()); boost::python::def ("getArray", getArray); typedef std::vector Container4; // Returning internal references to elements of a vector is // dangerous! The references can be invalidated by inserts or // deletes! boost::python::class_("Vector_ref") .def (boost::python::indexing::container_suite ::with_policies (boost::python::return_internal_reference<>())); typedef boost::python::indexing::container_proxy< std::vector > Container5; boost::python::class_("Vector_proxy") .def (boost::python::indexing::container_suite()) .def ("reserve", &Container5::reserve) ; /* The no-partial-specialization version for vector using namespace boost::python; using namespace indexing; class_ > ("vector_int") .def (visitor < default_algorithms < default_sequence_traits < std::vector > >, return_value_policy >()); */ }