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

Include container-specific traits and algorithms header

[SVN r20526]
This commit is contained in:
Raoul Gough
2003-10-28 15:25:35 +00:00
parent 1addeee962
commit e425a15fd2
6 changed files with 9 additions and 11 deletions

View File

@@ -1,4 +1,3 @@
//
// Module test_deque_ext.cpp
//
// Copyright (c) 2003 Raoul M. Gough
@@ -18,6 +17,7 @@
#include <boost/python/suite/indexing/container_suite.hpp>
#include <boost/python/suite/indexing/container_proxy.hpp>
#include <boost/python/suite/indexing/deque.hpp>
#include <deque>
#include <boost/python/class.hpp>
#include <boost/python/module.hpp>

View File

@@ -17,7 +17,8 @@
#include "int_wrapper.hpp"
#include <boost/python/suite/indexing/container_suite.hpp>
#include <boost/python/suite/indexing/iterator_pair.hpp> // for begin(), end()
#include <boost/python/suite/indexing/iterator_range.hpp> // for begin(), end()
#include <boost/python/suite/indexing/vector.hpp>
#include <vector>
#include <boost/python/class.hpp>
#include <boost/python/module.hpp>

View File

@@ -1,5 +1,3 @@
// -*- mode:c++ -*-
//
// Module test_list_ext.cpp
//
// Copyright (c) 2003 Raoul M. Gough
@@ -18,6 +16,7 @@
#include "int_wrapper.hpp"
#include <boost/python/suite/indexing/container_suite.hpp>
#include <boost/python/suite/indexing/list.hpp>
#include <list>
#include <boost/python/class.hpp>
#include <boost/python/module.hpp>

View File

@@ -1,5 +1,3 @@
// -*- mode:c++ -*-
//
// Module test_vector_ext.cpp
//
// Copyright (c) 2003 Raoul M. Gough
@@ -21,13 +19,14 @@
#include <boost/python/suite/indexing/container_suite.hpp>
#include <boost/python/suite/indexing/container_proxy.hpp>
#include <boost/python/suite/indexing/vector.hpp>
#include <vector>
#include <boost/python/class.hpp>
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
#include <boost/python/implicit.hpp>
// More messiness from not having a separate int_wrapper.cpp file
// Some messiness from not having a separate int_wrapper.cpp file
bool int_wrapper::our_trace_flag = true;
unsigned int_wrapper::our_object_counter = 0;

View File

@@ -1,5 +1,3 @@
// -*- mode:c++ -*-
//
// Module test_vector_shared_ext.cpp
//
// Copyright (c) 2003 Raoul M. Gough
@@ -26,6 +24,7 @@ bool operator== (int_wrapper_holder const &, int_wrapper_holder const &);
bool operator!= (int_wrapper_holder const &, int_wrapper_holder const &);
#include <boost/python/suite/indexing/container_suite.hpp>
#include <boost/python/suite/indexing/vector.hpp>
#include <vector>
#include <boost/python/class.hpp>
#include <boost/python/module.hpp>

View File

@@ -1,5 +1,3 @@
// -*- mode:c++ -*-
//
// Module testnonlinear.cpp
//
// Copyright (c) 2003 Raoul M. Gough
@@ -17,6 +15,8 @@
#include "int_wrapper.hpp"
#include <boost/python/suite/indexing/container_suite.hpp>
#include <boost/python/suite/indexing/map.hpp>
#include <boost/python/suite/indexing/set.hpp>
#include <map>
#include <set>
#include <boost/python/class.hpp>