[python-win32] Problem with destructor being declared protected.

2008-07-09 Thread Tony May
I am trying to build a helloworld program using bjam so that it can be imported into a python script. I get an error message that mentions a problem with the destructor being declared protected. Has anyone noticed this problem when building with Boost and Delta3D? C:\Program Files\boost\boost_1_35

[python-win32] MSVC ++ and Boost libraries

2008-07-07 Thread Tony May
Is it possible to use the pre-built binaries with MSVC++ 2005 express edition? I get the following error from bjam when attempting to build the pyd from the source file hello.cpp. - hello.cpp has the following code trying to wrap a class BOOST_

[python-win32] wrapping classes

2008-07-01 Thread Tony May
I get the following error message when trying to build a modified helloworld tutorial. I'm trying to import a class. code in hello.cpp includes -- class GreetBase { public: GreetBase(std::string txt) : txt(txt) {} std::string txt; virtual const