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
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_
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