2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 17:12:22 +00:00

Optional flags parameter to visitor allows container features to be suppressed

[SVN r20874]
This commit is contained in:
Raoul Gough
2003-11-19 23:07:01 +00:00
parent bdde13d1bc
commit 0bc4ee884f
14 changed files with 261 additions and 70 deletions

View File

@@ -70,7 +70,7 @@ BOOST_PYTHON_MODULE(test_vector_shared_ext)
typedef indexing::default_sequence_traits<Container1, value_traits_>
container_traits_;
typedef indexing::default_algorithms<container_traits_> algorithms_;
typedef indexing::container_suite<Container1, algorithms_> Suite1;
typedef indexing::container_suite<Container1, 0, algorithms_> Suite1;
boost::python::class_<Container1>("Vector_shared")
.def (Suite1())