$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Robert Dailey (rcdailey_at_[hidden])
Date: 2008-02-11 13:54:45
Wouldn't this work instead of calling PyImport_AppendInittab():
static void DoFoo()
{
}
using namespace boost::python;
BOOST_PYTHON_MODULE(pythontest)
{
def( "DoFoo", DoFoo );
}
void SetupPython()
{
object import( "pythontest" );
}
Notice how I'm importing the "pythontest" module. I want to use
Boost.Pythonwhere ever I can, and in the
embedding.cpp example they use the Python API directly to import the
embedded module.
Thanks.