2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00

mpl_v2 branch checkin

[SVN r15258]
This commit is contained in:
Dave Abrahams
2002-09-11 05:35:41 +00:00
parent 5113de875e
commit ada55bd9e2
3 changed files with 4 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ subproject libs/python ;
SEARCH on <module@>python.jam = $(BOOST_BUILD_PATH) ;
include <module@>python.jam ;
local bpl-ldflags ;
local bpl-linkflags ;
if $(UNIX) && ( $(OS) = AIX )
{

View File

@@ -8,6 +8,7 @@
#include <boost/python/def.hpp>
#include <boost/python/class.hpp>
#include <boost/python/implicit.hpp>
#include <boost/mpl/list.hpp>
struct Type1 {};
@@ -18,7 +19,7 @@ struct Expression {void add(Term const&) {} };
BOOST_PYTHON_MODULE_INIT(bienstman4_ext)
{
using namespace boost::python;
using boost::mpl::type_list;
using boost::mpl::list;
implicitly_convertible<Type1,Term>();

View File

@@ -7,7 +7,7 @@
#include <boost/python/module_init.hpp>
#include <boost/python/def.hpp>
#include <boost/python/class.hpp>
#include <boost/mpl/type_list.hpp>
#include <boost/mpl/list.hpp>
#include <complex>