2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 16:52:15 +00:00
Files
python/test/bienstman4.cpp
Dave Abrahams 3944786c13 Fixes
[SVN r13412]
2002-04-09 15:54:59 +00:00

41 lines
1009 B
C++

// Copyright David Abrahams 2002. Permission to copy, use,
// modify, sell and distribute this software is granted provided this
// copyright notice appears in all copies. This software is provided
// "as is" without express or implied warranty, and with no claim as
// to its suitability for any purpose.
#include <boost/python/module.hpp>
#include <boost/python/class.hpp>
#include <boost/python/implicit.hpp>
#include <boost/mpl/type_list.hpp>
struct Type1 {};
struct Term {Term(Type1 const&) {} };
struct Expression {void add(Term const&) {} };
BOOST_PYTHON_MODULE_INIT(bienstman4_ext)
{
using namespace boost::python;
using boost::mpl::type_list;
implicitly_convertible<Type1,Term>();
module("bienstman4_ext")
.add(class_<Expression>("Expression")
.def_init()
.def("add", &Expression::add))
.add(class_<Type1>("T1")
.def_init())
.add(class_<Term>("Term")
.def_init(type_list<Type1&>()))
;
Type1 t1;
Expression e;
e.add(t1);
}